summaryrefslogtreecommitdiff
path: root/tests/basic/bug54514.phpt
blob: 0c5595e3f703b63d2b92ec13f169c1561275ee25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--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