mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
For rationale, see #6787 Extensions migrated in part 4: * simplexml * skeleton * soap * spl * sqlite3 * sysvmsg * sysvsem * tidy - also removed a check for an ancient dependency version
14 lines
167 B
PHP
14 lines
167 B
PHP
--TEST--
|
|
test1() Basic test
|
|
--EXTENSIONS--
|
|
%EXTNAME%
|
|
--FILE--
|
|
<?php
|
|
$ret = test1();
|
|
|
|
var_dump($ret);
|
|
?>
|
|
--EXPECT--
|
|
The extension %EXTNAME% is loaded and working!
|
|
NULL
|