3 Star 12 Fork 3

纵使有花兼明月何堪无酒亦无人 / xukey

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ukey.php 500 Bytes
一键复制 编辑 原始数据 按行查看 历史
<?php
$br = (php_sapi_name() == "cli")? "":"<br>";
if(!extension_loaded('ukey')) {
dl('php_ukey.' . PHP_SHLIB_SUFFIX);
}
$module = 'ukey';
$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";
?>
C
1
https://gitee.com/xavier007/xukey.git
git@gitee.com:xavier007/xukey.git
xavier007
xukey
xukey
master

搜索帮助