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