3v4l.org

run code in 300+ PHP versions simultaneously
<?php // palindrom function anagram($s1, $s2) { $l1 = strlen($s1); $l2 = strlen($s2); if($l1 != $l2) return false; // $w1 = array(); $w2 = array(); // for($a=0; $a<$l1; $a++) { if(array_key_exists($s1[$a], $w1)) { $w1[$s1[$a]] = $w1[$s1[$a]] + 1; print_r($s1[$a]); } else { $w1[$s1[$a]] = 1; } } print_r($w1); } print_r(anagram('test', 'test')); print_r(array('tesfsdf' => 'dasdsad'));
Output for git.master, git.master_jit, rfc.property-hooks
tArray ( [t] => 2 [e] => 1 [s] => 1 ) Array ( [tesfsdf] => dasdsad )

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