xref: /PHP-7.4/sapi/fpm/tests/main-version.phpt (revision c245898b)
1--TEST--
2FPM: version string
3--SKIPIF--
4<?php include "skipif.inc"; ?>
5--FILE--
6<?php
7
8require_once "tester.inc";
9
10$php = \FPM\Tester::findExecutable();
11
12var_dump(`$php -n -v`);
13
14echo "Done\n";
15?>
16--EXPECTF--
17string(%d) "PHP %s (fpm%s (built: %s
18Copyright (c) The PHP Group
19Zend Engine v%s, Copyright (c) Zend Technologies
20"
21Done
22