mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
19 lines
310 B
PHP
19 lines
310 B
PHP
--TEST--
|
|
version string
|
|
--SKIPIF--
|
|
<?php include "skipif.inc"; ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$php = getenv('TEST_PHP_EXECUTABLE_ESCAPED');
|
|
|
|
var_dump(`$php -n -v`);
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
string(%d) "PHP %s (cli) (built: %s)%s
|
|
Copyright (c) The PHP Group
|
|
%AZend Engine v%s, Copyright (c) Zend Technologies%A"
|
|
Done
|