file_get_contents and file_put_contents with large files

前端 未结 3 562
轮回少年
轮回少年 2020-12-21 09:01

I\'m trying to get file contents, replace some parts of it using regular expressions and preg_replace and save it to another file:

$content = file_get_conten         


        
3条回答
  •  情歌与酒
    2020-12-21 09:46

    I've had max/limit issues with file_put_contents.

    No idea what the limits might be, but using fwrite solved my troubles and I put down the bottle.

提交回复
热议问题