I have a page and I have it,
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
when i try to change the line with strtolower(). he does not work on "Γ, Γ, Γ, Δ, Ε".
Example,
$str= "ΓaTPΓ";
$str = strtolower($str);
//$str = "ΓatpΓ";
Also I am trying to change them using ereg_replace(), but not working again.
$str = ereg_replace("Γ","Γ§",$str);
$str = ereg_replace("Γ","ΓΆ",$str);
so what do you think is the problem?
source
share