1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 08:58:28 +02:00
Files
archived-php-src/ext/skeleton/tests/003.phpt
T
2021-08-02 11:12:42 +02:00

13 lines
172 B
PHP

--TEST--
test2() Basic test
--EXTENSIONS--
%EXTNAME%
--FILE--
<?php
var_dump(test2());
var_dump(test2('PHP'));
?>
--EXPECT--
string(11) "Hello World"
string(9) "Hello PHP"