PHP date_create() 函数
2017-08-05 PHP date_create() 函数 PHP Date / Time 函数 实例 返回一个新的 DateTime 对象,然后格式化日期: ?php$date= date_create(2016-09-25) ;echo date_format($date,Y/m/d);? 运行实例 定义和用法 date_create() 函数返回新
PHP date_create_from_format() 函数
2017-08-05 PHP date_create_from_format() 函数 PHP Date / Time 函数 实例 返回一个根据指定格式进行格式化的新的 DateTime 对象: ?php$date= date_create_from_format(j-M-Y,25-Sep-2016) ;? 运行实例 定义和用法 date_create_f
PHP date_add() 函数
2017-08-05 PHP date_add() 函数 PHP Date / Time 函数 实例 添加 100 天到 1980 年 10 月 15 日: ?php$date=date_create(1980-10-15); date_add($date,date_interval_create_from_date_string(100 days)) ;echo date_format($date,Y-m-d);? 运行实例
PHP checkdate() 函数
2017-08-05 PHP checkdate() 函数 PHP Date / Time 函数 实例 检查一些日期是否是有效的格利高里日期: ?phpvar_dump( checkdate(12,31,-400) );echo br;var_dump( checkdate(2,29,2003) );echo br;var_dump( checkdate(2,29,2004) );? 运行实
PHP trigger_error() 函数
2017-08-05 PHP trigger_error() 函数 PHP Error 和 Logging 函数 实例 如果 $usernum 大于 10,触发一个错误: ?php if ($usernum10) { trigger_error(Number cannot be larger than 10); } ? 以上代码的输出类似这样: Notice: Number
PHP set_exception_handler() 函数
2017-08-05 PHP set_exception_handler() 函数 PHP Error 和 Logging 函数 实例 设置用户定义的异常处理函数: ?php // 用户定义的异常处理函数 function myException($exception) { echo bException:/b , $exception-getMessage(); } /
PHP set_error_handler() 函数
2017-08-05 PHP set_error_handler() 函数 PHP Error 和 Logging 函数 实例 通过 set_error_handler() 函数设置用户自定义的错误处理程序,然后触发错误(通过 trigger_error()): ?php // 用户定义的错误处理函数 funct
PHP restore_exception_handler() 函数
2017-08-05 PHP restore_exception_handler() 函数 PHP Error 和 Logging 函数 Example 恢复异常处理程序: ?php // 两个用户定义的异常处理函数 function myException1($exception) { echo [ . __FUNCTION__ . ] . $exception-getMessage();
PHP restore_error_handler() 函数
2017-08-05 PHP restore_error_handler() 函数 PHP Error 和 Logging 函数 Example 在通过 set_error_handler() 函数更改错误处理函数之后对其进行恢复: ?php // 用户定义的错误处理函数 function myErrorHandler($errno, $errst
PHP error_reporting() 函数
2017-08-05 PHP error_reporting() 函数 PHP Error 和 Logging 函数 实例 规定不同的错误级别报告: ?php // 关闭错误报告 error_reporting(0); // 报告 runtime 错误 error_reporting(E_ERROR | E_WARNING | E_PARSE); // 报告所有错误