猿问
php如何把一个大文件的1024-1054字节替换为a?
不想用file_get_contents函数,因为文件太大
波斯汪
浏览 225
回答 2
2回答
Helenr
$fp = fopen('a.txt', 'r+'); fseek($fp, 1024);fwrite($fp, str_repeat('a', 30));fclose($fp);
0
0
0
随时随地看视频
慕课网APP
我要回答