blob: ffb8439f2baeb15f7c42887ab8c7299a98161a0c [file] [log] [blame]
<?
if(!extension_loaded('axis2')) {
dl('axis2.' . PHP_SHLIB_SUFFIX);
}
$module = 'axis2';
$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";
?>