mirror of
https://github.com/php/php-src.git
synced 2026-03-27 01:32:22 +01:00
22 lines
331 B
PHP
22 lines
331 B
PHP
--TEST--
|
|
FPM: version string
|
|
--SKIPIF--
|
|
<?php include "skipif.inc"; ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
include "include.inc";
|
|
|
|
$php = get_fpm_path();
|
|
|
|
var_dump(`$php -n -v`);
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
string(%d) "PHP %s (fpm%s (built: %s
|
|
Copyright (c) 1997-20%s The PHP Group
|
|
Zend Engine v%s, Copyright (c) 1998-20%s Zend Technologies
|
|
"
|
|
Done
|