XML : PHP & XML: str_replace does NOT replace string

I got the following code:

  $xmlString = file_get_contents([...]);  $echoMe= str_replace( 'ZONE', 'ENOZ', $xmlString);  echo $echoMe;    

How come it still shows me ZONE right there when I echo it?

No comments:

Post a Comment