1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/skeleton/skeleton.php
Rasmus Lerdorf 246999a51f Tiny wording fix
2000-07-16 18:51:00 +00:00

11 lines
213 B
PHP

<?
$module = 'extname';
$function = 'confirm_' . $module . '_compiled';
if (extension_loaded($module)) {
$str = $function($module);
} else {
$str = "Module $module is not compiled into PHP";
}
echo "$str\n";
?>