mirror of
https://github.com/php/php-src.git
synced 2026-03-27 17:52:16 +01:00
10 lines
164 B
PHP
10 lines
164 B
PHP
--TEST--
|
|
Req #54514 (Get php binary path during script execution)
|
|
--FILE--
|
|
<?php
|
|
if(getenv('TEST_PHP_EXECUTABLE') === PHP_BINARY) {
|
|
echo "done";
|
|
}
|
|
--EXPECT--
|
|
done
|