mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
11 lines
211 B
PHP
11 lines
211 B
PHP
<?
|
|
$module = 'qtdom';
|
|
$function = 'confirm_' . $module . '_compiled';
|
|
if (extension_loaded($module)) {
|
|
$str = $function($module);
|
|
} else {
|
|
$str = "Module $module is not compiled into PHP";
|
|
}
|
|
echo "$str\n";
|
|
?>
|