Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHPで読んでいるファイルがあります。空白で始まり、探しているキーワード (「project_name:」など) で始まる行を探して、その行の他の部分を変更したいと考えています。
現在、これを処理する方法は、ファイル全体を文字列変数に読み取り、その文字列を操作してから、すべてをファイルに書き戻し、ファイル全体を完全に置き換えることです ( および を介しfopen( filepath, "wb" )てfwrite()) が、これは非効率的です。より良い方法はありますか?
fopen( filepath, "wb" )
fwrite()