3v4l.org

run code in 300+ PHP versions simultaneously
<?php $p =<<<EOT That interviews should involve simple code is now common wisdom in programming circles. The story is that a high percentage of programmers, even people with impressive resumes, “just can’t code.” Asked to do the simplest things—problems a good coders could solve as fast they could write—some spend ten or twenty minutes before they get an answer, or fail entirely. (See discussion by Jeff Attwood and Joel Spolsky.) I don’t go as far as others here. I think a lot of “slow coders” are probably excellent employees, making up for it in other areas. Some projects don’t need speed. Some people just need to spend more time programming; everyone was a slow programmer some time. But I know from experience that slow coders don’t work at LibraryThing. They don’t fit the LibraryThing development culture. EOT; $pattern = '[\w\d]+'; $words = array(); preg_match_all('/'.$pattern.'/', $p, $words); $words = $words[0]; $result = array(); foreach ($words as $word) { $len = mb_strlen($word); if (isset($result[$len])) { $result[$len]++; } else { $result[$len] = 1; } } sort($result); foreach ($result as $length => $count) { echo $count.' words with '.$length.' letter.'.PHP_EOL; }
Output for git.master, git.master_jit, rfc.property-hooks
2 words with 0 letter. 2 words with 1 letter. 4 words with 2 letter. 6 words with 3 letter. 6 words with 4 letter. 7 words with 5 letter. 12 words with 6 letter. 12 words with 7 letter. 15 words with 8 letter. 20 words with 9 letter. 20 words with 10 letter. 34 words with 11 letter.

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:
48.12 ms | 402 KiB | 8 Q