Sophie

Sophie

distrib > Mageia > 1 > i586 > by-pkgid > 6d597c620641092656dc31cac1cac474 > files > 5

php-mcve-7.0.3-8.mga1.i586.rpm

<?
$module = 'MCVE';
if(!extension_loaded($module)) {
	dl('mcve.so');
}
$functions = get_extension_funcs($module);
echo "Functions available in the $module extension:<br>\n";
foreach($functions as $func) {
    echo $func."<br>\n";
}
echo "<br>\n";
?>