3v4l.org

run code in 300+ PHP versions simultaneously
<?php function diacriticsToNumbers($str) { $replace = [ '+' => 1, 'ě' => 2, 'š' => 3, 'č' => 4, 'ř' => 5, 'ž' => 6, 'ý' => 7, 'á' => 8, 'í' => 9, 'é' => 0, 'Ě' => 2, 'Š' => 3, 'Č' => 4, 'Ř' => 5, 'Ž' => 6, 'Ý' => 7, 'Á' => 8, 'Í' => 9, 'É' => 0, ]; return strtr($str, $replace); } echo diacriticsToNumbers('áéé ššé éýž');
Output for git.master, git.master_jit, rfc.property-hooks
800 330 076

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
42.99 ms | 401 KiB | 8 Q