这篇文章主要为大家详细介绍了PHP选项与信息函数用法示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小玲来看看吧!
bool assert ( mixed $assertion [, string $description ] ) — 检查一个断言是否为 FALSE代码如下:
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 '出错啦!';
}
代码如下:
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(is_int(1.2));//检测结果为fales
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"));
代码如下:
include 'test1.php';
include_once 'test2.php';
require 'test3.php';
require_once 'test4.php';
$included_files = get_included_files();
foreach ($included_files as $filename){
echo "$filename\n";
}
代码如下:
$ip = getenv('REMOTE_ADDR');
代码如下:
print_r(ini_get_all("pcre"));
print_r(ini_get_all());
代码如下:
phpcredits(CREDITS_GROUP | CREDITS_DOCS | CREDITS_FULLPAGE);
代码如下:
if (version_compare(PHP_VERSION, '5.3.0') >= 0) {
echo '我的PHP版本很高: ' . PHP_VERSION . "\n";
}
本文来自:http://www.q1010.com/173/15707-0.html
注:关于PHP选项与信息函数用法示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。