assert_options(ASSERT_ACTIVE, true);//允许使用assert()函数
assert_options(ASSERT_WARNING, false);//在assert失败时不输出警告信息
assert_options(ASSERT_BAIL, true);//assert失败后终止代码执行
assert_options(ASSERT_CALLBACK, 'getMsg');//assert失败后终止代码执行。
echo '开始:<br/>';
assert('
mysql_query("")');
echo '测试成功!';
function getMsg(){
echo '出错啦!';
}
if(!extension_loaded('sqlite')){//测试指定的扩展是否已经激活
$
prefix = (PHP_SHLIB_SUFFIX === 'dll') ? '
php_' : '';
dl($prefix . 'sqlite.' . PHP_SHLIB_SUFFIX);
}
print_r(get_extension_funcs("
xml"));