php 显示错误方法
set_error_handler(function($errno, $errstr, $errfile, $errline)
{
echo $errno.‘<br/>‘.$errstr.‘<br/>‘.$errfile.‘ line:‘.$errline;
});
nginx 设置php config
fastcgi_param PHP_ADMIN_VALUE session.save_path=/tmp;
Posted anjunact
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 显示错误方法相关的知识,希望对你有一定的参考价值。
php 显示错误方法
set_error_handler(function($errno, $errstr, $errfile, $errline)
{
echo $errno.‘<br/>‘.$errstr.‘<br/>‘.$errfile.‘ line:‘.$errline;
});
nginx 设置php config
fastcgi_param PHP_ADMIN_VALUE session.save_path=/tmp;
以上是关于php 显示错误方法的主要内容,如果未能解决你的问题,请参考以下文章