= 5.1.2, PHP 7, PHP 8)SplFileInfo::__construct — 構(gòu)建一個(gè)新的 SplFileInfo 對(duì)象說(shuō)明public SplFileInfo::__construct(string $file_n">

SplFileInfo::__construct

(PHP 5 >= 5.1.2, PHP 7, PHP 8)

SplFileInfo::__construct構(gòu)建一個(gè)新的 SplFileInfo 對(duì)象

說(shuō)明

public SplFileInfo::__construct(string $file_name)

為指定的 file_name 創(chuàng)建一個(gè)新的 SplFileInfo 對(duì)象,該文件不需要存在或者可讀。

參數(shù)

file_name

文件路徑

范例

示例 #1 SplFileInfo::__construct() 示例

<?php
$info 
= new SplFileInfo('example.php');
if (
$info->isFile()) {
    echo 
$info->getRealPath();
}
?>