php-src/sapi/cli/tests/001.phpt

20 lines
322 B
Plaintext
Raw Normal View History

2006-11-24 13:32:07 +00:00
--TEST--
version string
--SKIPIF--
<?php include "skipif.inc"; ?>
--FILE--
<?php
2007-01-20 22:12:45 +00:00
$php = getenv('TEST_PHP_EXECUTABLE');
2006-11-24 13:32:07 +00:00
var_dump(`"$php" -n -v`);
echo "Done\n";
?>
--EXPECTF--
string(%d) "PHP %s (cli) (built: %s)%s
Copyright (c) 1997-20%d The PHP Group
Zend Engine v%s, Copyright (c) 1998-20%d Zend Technologies
"
Done