码迷,mamicode.com
首页 > Web开发 > 详细

PHP set_error_handler() 函数与 trigger_error() 函数的配合使用

时间:2015-08-29 17:08:04      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:函数   php   

两个函数的定义如下:
set_error_handler() 函数设置用户自定义的错误处理函数(注:是用户自定义的函数)
trigger_error() 函数创建用户定义的错误消息。(注:自定义的错误消息

案例如下:

<?php

function customError($errno, $errstr, $errfile,$errline){
    return "<b>Custom Error:<b>[$errno]$errstr"."<br>"."Error on line $errline in $errfile";
}

class test{
     public function project($test){
        if(is_int($test)){
           return $test;
        }else{
           trigger_error("Argument passed must be of type int");
        }

        set_error_handler("customError");
     }
}

$T=new test();
echo $T->project(100);
echo $T->project("Helloworld");
?>

输出结果如下:

100
( ! ) Notice: Argument passed must be of type int in D:\www\MyProjecttest\index4.php on line 25
Call Stack
Time Memory Function Location
1 0.0000 135904 {main}( ) …\index4.php:0
2 0.0000 136384 test->project( string(10) ) …\index4.php:34
3 0.0000 136496 trigger_error ( string(35) ) …\index4.php:25

版权声明:本文为博主原创文章,未经博主允许不得转载。

PHP set_error_handler() 函数与 trigger_error() 函数的配合使用

标签:函数   php   

原文地址:http://blog.csdn.net/tashanhongye/article/details/48087621

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!