summaryrefslogtreecommitdiff
path: root/ext/skeleton/skeleton.php
blob: 6774d6362457353b4a7b8b422d00488c20c4ef44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?
if(!extension_loaded('extname')) {
	dl('extname.so');
}
$module = 'extname';
$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";
?>