正文 PHP用fwrite函数写日志的方法 创想网络 V管理员 /2020-08-27 /0 评论 /6313 阅读 0827 比如开发支付接口过程中, 需要异步接收回调数据, 我们可以用fwrite函数把接收到的数据打印到文本里下面是代码$logs=fopen("test.log","a") or die ("Unable to open file!"); fwrite($logs, $str); fwrite($logs, print_r($str, true));//打印数组 fclose($logs);
还没有评论,来说两句吧...