3v4l.org

run code in 300+ PHP versions simultaneously
<?php $strings = array('SS2014', 'SU2014','FW2014','SS2013','SU2013','FW2013'); $results = array(); foreach($strings as $string){ $weight = 0; $weight_string = preg_replace("/[^0-9a-zA-Z]/", "", $string); $weight += ord(substr(strtolower($weight_string), 0)) * 1000; $weight += ord(substr(strtolower($weight_string), 1)) * 100; $weight += ord(substr(strtolower($weight_string), 2)) * 10; $weight += ord(substr(strtolower($weight_string), 3)); $results[] = $weight; } var_dump($results);
Output for git.master, git.master_jit, rfc.property-hooks
array(6) { [0]=> int(127048) [1]=> int(127248) [2]=> int(114448) [3]=> int(127048) [4]=> int(127248) [5]=> int(114448) }

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:
40.01 ms | 401 KiB | 8 Q