1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 16:38:25 +02:00
Files
archived-php-src/ext/skeleton/tests/001.phpt
T
Nikita Popov c5401854fc Run tidy
This should fix most of the remaining issues with tabs and spaces
being mixed in tests.
2020-09-18 14:28:32 +02:00

15 lines
230 B
PHP

--TEST--
Check if %EXTNAME% is loaded
--SKIPIF--
<?php
if (!extension_loaded('%EXTNAME%')) {
echo 'skip';
}
?>
--FILE--
<?php
echo 'The extension "%EXTNAME%" is available';
?>
--EXPECT--
The extension "%EXTNAME%" is available