3v4l.org

run code in 300+ PHP versions simultaneously
<?php function isAnagram( $phrase1, $phrase2 ) { $phrase1 = strtolower(preg_replace("/[^a-zA-Z]/", "", $phrase1)); $phrase2 = strtolower(preg_replace("/[^a-zA-Z]/", "", $phrase2)); // todo: fix splitting $a1 = str_split($phrase1); $a2 = str_split($phrase2); sort($a1); sort($a2); $phrase1 = join("",$a1); $phrase2 = join("",$a2); return ( $phrase1 === $phrase2 ); } echo "Test1 = " . (isAnagram( "", "" ) ? "Is anagram" : "Is not") . "\n"; echo "Test2 = " . (isAnagram( "Dormitory", "Dirty room" ) ? "Is anagram" : "Is not") . "\n"; echo "Test3 = " . (isAnagram( "A decimal point", "I'm a dot in place" ) ? "Is anagram" : "Is not") . "\n"; echo "Test4 = " . (isAnagram( "A decimal point no?", "I'm a dot in place" ) ? "Is anagram" : "Is not") . "\n"; echo "Test5 = " . (isAnagram( "A decimal point", "I'm a dot in place yes?" ) ? "Is anagram" : "Is not") . "\n";
Output for git.master, git.master_jit, rfc.property-hooks
Test1 = Is anagram Test2 = Is anagram Test3 = Is anagram Test4 = Is not Test5 = Is not

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.68 ms | 401 KiB | 8 Q