1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 08:42:29 +01:00
Files
archived-php-src/sapi/cli/tests/002.phpt
2009-01-05 15:21:10 +00:00

23 lines
316 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";
?>
--EXPECTF--
string(19) "unicode(5) "hello"
"
Done