mirror of
https://github.com/php/php-src.git
synced 2025-01-05 18:33:56 +08:00
a555cc0b3d
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
12 lines
284 B
PHP
12 lines
284 B
PHP
--TEST--
|
|
SPL: Bug #48361 SpleFileInfo::getPathName should return the dirname's path
|
|
--FILE--
|
|
<?php
|
|
$info = new SplFileInfo(__FILE__);
|
|
var_dump($info->getRealPath());
|
|
var_dump($info->getPathInfo()->getRealPath());
|
|
?>
|
|
--EXPECTF--
|
|
string(%d) "%stests%sbug48361.php"
|
|
string(%d) "%stests"
|