• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • SplFileInfo::__toString()

    (PHP 5 >= 5.1.2, PHP 7)

    Returns the path to the file as a string

    说明

    publicSplFileInfo::__toString(void): string

    This method will return the file name of the referenced file.

    参数

    此函数没有参数。

    返回值

    Returns the path to the file.

    范例

    SplFileInfo::__toString() example

    <?php
    $info = new SplFileInfo('foo');
    var_dump($info->__toString());
    echo $info.PHP_EOL;
    $info = new SplFileInfo('/usr/bin/php');
    var_dump($info->__toString());
    echo $info.PHP_EOL;
    ?>
    

    以上例程的输出类似于:

    string(3) "foo"
    foo
    string(12) "/usr/bin/php"
    /usr/bin/php 
    
    It returns the exact $file_name string provided in the constructor, without further processing, normalisation or verification.