1
0
mirror of https://github.com/php/php-src.git synced 2026-04-01 13:12:16 +02:00
Files
archived-php-src/sapi/cli/tests/002.phpt
2006-11-24 13:32:07 +00:00

23 lines
311 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 = $_ENV['TEST_PHP_EXECUTABLE'];
var_dump(`"$php" -r 'var_dump("hello");'`);
echo "Done\n";
?>
--EXPECTF--
string(18) "string(5) "hello"
"
Done