现在的位置: 首页 > 综合 > 正文

php error_log 写文件

2018年04月15日 ⁄ 综合 ⁄ 共 259字 ⁄ 字号 评论关闭

<?php

#write the error_log file which set by
php.ini (search error_log)

error_log('asdf');

 

#write message to file

error_log('abc',3,'E:/xampp/apache/logs/asd');

 

#others

#send mail to admin

error_log("hi~~", 1, "admin@localhost.com
");

 

#sent to SAPI (CLI
模式下直接输出...)

error_log('asdf',4); 

抱歉!评论已关闭.