= 5.1.2, PHP 7, PHP 8)SplFileInfo::__construct — 構(gòu)建一個新的 SplFileInfo 對象說明public SplFileInfo::__construct(string $file_n">
(PHP 5 >= 5.1.2, PHP 7, PHP 8)
SplFileInfo::__construct — 構(gòu)建一個新的 SplFileInfo 對象
$file_name
)為指定的 file_name 創(chuàng)建一個新的 SplFileInfo 對象,該文件不需要存在或者可讀。
file_name
文件路徑
示例 #1 SplFileInfo::__construct() 示例
<?php
$info = new SplFileInfo('example.php');
if ($info->isFile()) {
echo $info->getRealPath();
}
?>