static function strtoupper($s) { if (false !== strpos($s, 'i')) { $s = str_replace('i', 'İ', $s); } return parent::strtoupper($s); }