在php中创建错误日志excel文件

时间:2017-07-07 07:05:53

标签: php phpexcel

我已使用以下代码

创建了错误日志文本文件以显示错误
$file_path = FCPATH . "assets/log/error.txt";
   $myfile = fopen($file_path , "a") or die("Unable to open file!");
   $txt = 'pls check error for'.' '. $id."\r\n";
   fwrite($myfile, $txt);
   fclose($myfile);

现在我必须在excel中创建相同的错误日志文件,其中一列为S.No,其他列包含字段名称和错误,如下面的消息所示,而不是仅显示消息。请帮助我解决上述问题。

enter image description here

0 个答案:

没有答案