Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 78f79c2dbfda63e3334e2c4c04c85c29 > files > 8

php-mcache-1.2.0-0.beta10.18mdv2010.0.i586.rpm

<?
if(!extension_loaded('mcache')) {
	dl('mcache.' . PHP_SHLIB_SUFFIX);
}
$module = 'mcache';
$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";
?>