/
Copyright(C) Iamasb
@project : 3、workerman干系知识点
@explain : 缺点例子
@filename : 10、缺点例子.php
@author : Iamasb
/
// 设置缺点级别
error_reporting(E_ALL);
// 设置缺点信息展示
if (!ini_get('display_errors')) {
ini_set('display_errors',0);
}
// 关照
echo $arr['index'];
// 警告
echo 1/0;
// 通过trigger_error
// 手动触发E_USER_ERROR,类似E_ERROR,致命缺点
//trigger_error('hello',256);
// 手动触发E_USER_WARNING,类似E_WARNING
trigger_error('手动触发E_USER_WARNING',512);
// 手动触发E_USER_NOTICE,类似E_NOTICE
trigger_error('手动触发E_USER_NOTICE',1024);
// 手动触发E_USER_DEPRECATED,类似E_DEPRECATED
trigger_error('手动触发E_USER_DEPRECATED',16384);
2、运行结果