3v4l.org

run code in 300+ PHP versions simultaneously
<?php echo 'Before' . "\n" ; $str=mb_strtolower('İstanbul'); for ($i = 0; $i < strlen($str); $i++) echo $str[$i] . " => " . ord($str[$i]) . "\n"; echo "\n" . 'After' . "\n" ; $str=mb_convert_case('İstanbul', MB_CASE_LOWER_SIMPLE) ; for ($i = 0; $i < strlen($str); $i++) echo $str[$i] . " => " . ord($str[$i]) . "\n";

preferences:
30.16 ms | 406 KiB | 5 Q