1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/sapi/cli/tests/009.phpt
2006-11-24 13:33:38 +00:00

24 lines
489 B
PHP

--TEST--
using invalid combinations of cmdline options
--SKIPIF--
<?php include "skipif.inc"; ?>
--FILE--
<?php
$php = $_ENV['TEST_PHP_EXECUTABLE'];
var_dump(`$php -n -c -r 'echo hello;'`);
var_dump(`$php -a -r 'echo hello;'`);
var_dump(`$php -r 'echo hello;' -a`);
echo "Done\n";
?>
--EXPECTF--
You cannot use both -n and -c switch. Use -h for help.
NULL
Either execute direct code, process stdin or use a file.
NULL
Either execute direct code, process stdin or use a file.
NULL
Done