|
Chuck, it seems like it is the sign & it dosnt like, if I remove that, then the rest is being replaced:
This make a replacement
$str1 = array("aelig;", "oslash;", "aring;");
$str2 = array("æ", "ø", "å");
This dosnt:
$str1 = array("æ", "ø", "å");
$str2 = array("æ", "ø", "å");
|