标签: php php-7
在PHP(服务器)程序中,我有:
file_put_contents("large_file.txt",$logs."\n",FILE_APPEND|LOCK_EX);
此行之后紧跟echo:
echo
echo json_encode($params);
第一行执行需要花费很多时间,可能是因为$logs可能包含大量数据。
$logs
有什么方法可以让file_puts_contents独立工作并跳到下一行?
file_puts_contents