我想将来自 2 个或更多请求的内容放入一个文件中,该文件将被格式化为:
customer | invoice
下面我设法让两个请求都被发布,但我如何让它们以以下格式发布:
Customer1 | Invoice1
Customer2 | Invoice2 ..etc
PHP代码:
file_put_contents('/root/service_Logs/service.log',"
{$this->request->customer}\n",FILE_APPEND);
file_put_contents('/root/service_Logs/service.log',
"{$this->request->invoice}\n",FILE_APPEND);
编辑:仍然不是苹果以这种格式获得它们。有任何想法吗?