提交 921ab62d 编写于 作者: C codinghuang

Delete the useless file

上级 a1ee0d5c
<?php
$br = (php_sapi_name() == "cli")? "":"<br>";
if(!extension_loaded('study')) {
dl('study.' . PHP_SHLIB_SUFFIX);
}
$module = 'study';
$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";
?>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册