1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/tests/basic/bug54514.phpt
2011-12-26 03:55:29 +00:00

13 lines
258 B
PHP

--TEST--
Req #54514 (Get php binary path during script execution)
--FILE--
<?php
if(realpath(getenv('TEST_PHP_EXECUTABLE')) === realpath(PHP_BINARY)) {
echo "done";
} else {
var_dump(getenv('TEST_PHP_EXECUTABLE'));
var_dump(PHP_BINARY);
}
--EXPECT--
done