mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
13 lines
251 B
PHP
13 lines
251 B
PHP
<?
|
|
$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";
|
|
?>
|