DirectoryIterator::getPath
(PHP 5, PHP 7, PHP 8)
DirectoryIterator::getPath — Get path of current Iterator item without filename
參數
此函式沒有參數。
返回值
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
參見
- DirectoryIterator::getBasename() - Get base name of current DirectoryIterator item
- DirectoryIterator::getFilename() - Return file name of current DirectoryIterator item
- DirectoryIterator::getPathname() - Return path and file name of current DirectoryIterator item
- pathinfo() - 返回檔案路徑的資訊