PHP操作文件
Posted friendwrite
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP操作文件相关的知识,希望对你有一定的参考价值。
public function log() { $file = fopen(PACK_PATH . "/ProjectImg_1902.log", "r"); $myfile = fopen(PACK_PATH . "/url.txt", ‘a‘) or die("Unable to open file!"); while (!feof($file)) { $id = trim(str_replace(‘ ‘, ‘‘, fgets($file))); $res = strstr($id, ‘www.bozhou.gov.cn‘); if (empty($res)) { continue; } else { $start = "data:"; $end = ";msg"; $str = $this->get_between($id, $start, $end); $data = json_decode($str, true); fwrite($myfile, $data[‘picUrl‘] . " "); // } } echo ‘code died please reboot‘; fclose($myfile); exit(); }
以上是关于PHP操作文件的主要内容,如果未能解决你的问题,请参考以下文章
php代码片段: sendFile/videoStream/sendEmail/phpexcel/ffmpeg/zip
VSCode自定义代码片段15——git命令操作一个完整流程