|
Posted by J.O. Aho on 08/03/06 19:30
Luka M. wrote:
> Can anyone tell me why, if PHP reads from a file and puts it in a string,
> the string is not the same as the file. Not just that, but it seems that if
> I use str_replace on it, it doesen't quite work! Why could that be?
Are you using the str_replace() the right way?
$filestring = str_replace("search","replace",$filestring);
http://www.php.net/manual/en/function.str-replace.php
If you think it looks different on the webpage, then it's for HTML don't care
about new lines and multiple white spaces.
//Aho
[Back to original message]
|