I want to replace certain strings with another one in a text file (ex: H with ,H). Is there any way to that using PHP?
H
,H
You could read the entire file in with file_get_contents(), perform a str_replace(), and output it back with file_put_contents().
Sample code:
<?php $path_to_file = 'path/to/the/file'; $file_contents = file_get_contents($path_to_file); $file_contents = str_replace(" H",",H",$file_contents); file_put_contents($path_to_file,$file_contents); ?>
1.4m articles
1.4m replys
5 comments
57.0k users