首页 > 代码库 > PHP 打印调试信息

PHP 打印调试信息

1.将输出的数组存入文件,比如debug_trace()的输出:

技术分享
$debug_info = print_r(debug_backtrace(),true);
file_put_contents("log.txt",$debug_info);
View Code

 

PHP 打印调试信息