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); var_dump($weight_string); $weight += ord(substr(strtolower($weight_string), 0)) * 1000; var_dump($weight); $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
string(6) "SS2014" int(115000) string(6) "SU2014" int(115000) string(6) "FW2014" int(102000) string(6) "SS2013" int(115000) string(6) "SU2013" int(115000) string(6) "FW2013" int(102000) 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:
51.5 ms | 402 KiB | 8 Q