I'm having some trouble with the character ó. I want to replace ó with ó and I'm trying to do this like this:
Code: Select all
$value = "Po?ó? góry";
$value = str_replace('ó','ó',$value);
Any ideas?
Moderator: General Moderators
Code: Select all
$value = "Po?ó? góry";
$value = str_replace('ó','ó',$value);