Initial import, PHP program for testing if the qtdom extension is available.

This commit is contained in:
Jan Borsodi 2000-11-15 19:02:14 +00:00
parent bde531da79
commit 51011a6672

10
ext/qtdom/qtdom.php Normal file
View File

@ -0,0 +1,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";
?>