我已使用以下代码
创建了错误日志文本文件以显示错误$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,其他列包含字段名称和错误,如下面的消息所示,而不是仅显示消息。请帮助我解决上述问题。