<?php function mb_strcasecmp($str1, $str2, $encoding = "UTF-8") { return strcmp(mb_strtoupper($str1, $encoding), mb_strtoupper($str2, $encoding)); } echo (bool)mb_strcasecmp('Γ', 'γ');
You have javascript disabled. You will not be able to edit any code.