1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/sapi/cli/tests/002.phpt
2018-10-14 19:45:12 +02:00

20 lines
239 B
PHP

--TEST--
running code with -r
--SKIPIF--
<?php
include "skipif.inc";
?>
--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