mirror of
https://github.com/php/php-src.git
synced 2026-04-21 23:18:13 +02:00
767eaa7a4e
- Fix #45345 (getPathInfo on the file instead of the dir) - Remove trailing / on input
45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
--TEST--
|
|
SPL: SplFileObject::getFileInfo
|
|
--CREDITS--
|
|
H�vard Eide <nucleuz at gmail.com>
|
|
#Testfest php.no
|
|
--INI--
|
|
include_path=.
|
|
--FILE--
|
|
<?php
|
|
$file = __FILE__;
|
|
$s = new SplFileObject( $file );
|
|
var_dump($fi = $s->getFileInfo(), (string)$fi);
|
|
|
|
$d = new SplFileInfo( __DIR__ );
|
|
echo "\n";
|
|
var_dump($fi = $d->getFileInfo(), (string)$fi);
|
|
$d = new SplFileInfo( __DIR__."/" );
|
|
echo "\n";
|
|
var_dump($fi = $d->getFileInfo(), (string)$fi);
|
|
?>
|
|
--EXPECTF--
|
|
object(SplFileInfo)#%d (2) {
|
|
["pathName":"SplFileInfo":private]=>
|
|
string(%d) "%sext%espl%etests%efileobject_getfileinfo_basic.php"
|
|
["fileName":"SplFileInfo":private]=>
|
|
string(%d) "fileobject_getfileinfo_basic.php"
|
|
}
|
|
string(%d) "%sext%espl%etests%efileobject_getfileinfo_basic.php"
|
|
|
|
object(SplFileInfo)#%d (2) {
|
|
["pathName":"SplFileInfo":private]=>
|
|
string(%d) "%sext%espl%etests"
|
|
["fileName":"SplFileInfo":private]=>
|
|
string(%d) "tests"
|
|
}
|
|
string(%d) "%sext%espl%etests"
|
|
|
|
object(SplFileInfo)#%d (2) {
|
|
["pathName":"SplFileInfo":private]=>
|
|
string(%d) "%sext%espl%etests"
|
|
["fileName":"SplFileInfo":private]=>
|
|
string(%d) "tests"
|
|
}
|
|
string(%d) "%sext%espl%etests"
|