php-src/sapi/cli/tests/002-unix.phpt
2018-10-14 12:07:20 -03:00

22 lines
309 B
PHP

--TEST--
running code with -r
--SKIPIF--
<?php
include "skipif.inc";
if (substr(PHP_OS, 0, 3) == 'WIN') {
die ("skip not for Windows");
}
?>
--FILE--
<?php
$php = getenv('TEST_PHP_EXECUTABLE');
var_dump(`$php -n -r 'var_dump("hello");'`);
echo "Done\n";
?>
--EXPECT--
string(18) "string(5) "hello"
"
Done