mirror of
https://github.com/php/php-src.git
synced 2026-03-26 01:02:25 +01:00
23 lines
468 B
PHP
23 lines
468 B
PHP
--TEST--
|
|
Bug #61546 (functions related to current script failed when chdir() in cli sapi)
|
|
--FILE--
|
|
<?php
|
|
$php = getenv("TEST_PHP_EXECUTABLE");
|
|
$test_code = <<<PHP
|
|
<?php
|
|
chdir('..');
|
|
var_dump(get_current_user() != "");
|
|
chdir('..');
|
|
var_dump(getmyinode() != false);
|
|
var_dump(getlastmod() != false);
|
|
PHP;
|
|
|
|
file_put_contents("bug61546_sub.php", $test_code);
|
|
system($php . ' -n bug61546_sub.php');
|
|
unlink("bug61546_sub.php");
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
bool(true)
|
|
bool(true)
|