1
0
mirror of https://github.com/php/php-src.git synced 2026-04-19 05:51:02 +02:00
Files
archived-php-src/ext/skeleton/tests/002.phpt
Máté Kocsis 736b22dc0b Add stubs for aliases
Closes GH-5187
2020-02-18 21:10:36 +01:00

18 lines
216 B
PHP

--TEST--
test1() Basic test
--SKIPIF--
<?php
if (!extension_loaded('%EXTNAME%')) {
echo 'skip';
}
?>
--FILE--
<?php
$ret = test1();
var_dump($ret);
?>
--EXPECT--
The extension %EXTNAME% is loaded and working!
NULL