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); for($a=0; $a<$l2; $a++) { if(array_key_exists($s2[$a], $w2)) { $w2[$s2[$a]] = $w2[$s2[$a]] + 1; print_r($s2[$a]); } else { $w2[$s2[$a]] = 1; } } ksort($w1); ksort($w2); print_r($w1); print_r($w2); } print_r(anagram('test', 'test')); //print_r(array('tesfsdf' => 'dasdsad'));
Output for git.master, git.master_jit, rfc.property-hooks
tArray ( [e] => 1 [s] => 1 [t] => 2 ) Array ( [e] => 1 [s] => 1 [t] => 2 )

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