You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
439 B
20 lines
439 B
<?
|
|
if(!extension_loaded('htdig')) {
|
|
dl('htdigphp.so');
|
|
}
|
|
$module = 'htdig';
|
|
$functions = get_extension_funcs($module);
|
|
echo "Functions available in the test extension:<br>\n";
|
|
foreach($functions as $func) {
|
|
echo $func."<br>\n";
|
|
}
|
|
echo "<br>\n";
|
|
$function = 'confirm_' . $module . '_compiled';
|
|
if (extension_loaded($module)) {
|
|
$str = $function($module);
|
|
} else {
|
|
$str = "Module $module is not compiled into PHP";
|
|
}
|
|
echo "$str\n";
|
|
?>
|