summaryrefslogtreecommitdiff
path: root/ext/qtdom/qtdom.php
blob: 8db4e649b30fb9ae20ce9866cae81db9f24a3128 (plain)
1
2
3
4
5
6
7
8
9
10
<?
$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";
?>