1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 05:21:02 +02:00
Files
archived-php-src/ext/skeleton/tests/002.phpt
2018-10-14 19:45:12 +02:00

18 lines
236 B
PHP

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