Get path of current Iterator item without filename

DirectoryIterator::getPath

(PHP 5, PHP 7, PHP 8)

DirectoryIterator::getPathGet path of current Iterator item without filename

說明

public DirectoryIterator::getPath(): string

Get the path to the current DirectoryIterator item.

參數

此函式沒有參數。

返回值

Returns the path to the file, omitting the file name and any trailing slash.

範例

示例 #1 DirectoryIterator::getPath() example

<?php
$iterator 
= new DirectoryIterator(dirname(__FILE__));
echo 
$iterator->getPath();
?>

以上例程的輸出類似於:

/home/examples/public_html

參見

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *