3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Source: https://bugs.php.net/bug.php?id=61225 $wyraz1= "baba"; $wyraz2="abba"; function testAnagram($wyraz,$wyraz2) { if (strlen($wyraz) == strlen($wyraz2)) { $isAnagram = array(); for ($i=0;$i<strlen($wyraz);$i++) { if (isset($isAnagram[$wyraz[$i]])) $isAnagram[$wyraz[$i]]++; else $isAnagram[$wyraz[$i]] = 1; } return $isAnagram; } else {echo "rozne dlugosci";} } $wyn1 = testAnagram($wyraz1); ksort($wyn1); $wyn2 = testAnagram($wyraz2); ksort($wyn2); if ($wyn1 == $wyn2) { echo "identical"; } else {echo "not ident.";} print_r($wyn1);
Output for 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.12 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught ArgumentCountError: Too few arguments to function testAnagram(), 1 passed in /in/hGWDt on line 19 and exactly 2 expected in /in/hGWDt:7 Stack trace: #0 /in/hGWDt(19): testAnagram('baba') #1 {main} thrown in /in/hGWDt on line 7
Process exited with code 255.
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.36, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20
Warning: Missing argument 2 for testAnagram(), called in /in/hGWDt on line 19 and defined in /in/hGWDt on line 7 Notice: Undefined variable: wyraz2 in /in/hGWDt on line 8 rozne dlugosci Warning: ksort() expects parameter 1 to be array, null given in /in/hGWDt on line 20 Warning: Missing argument 2 for testAnagram(), called in /in/hGWDt on line 21 and defined in /in/hGWDt on line 7 Notice: Undefined variable: wyraz2 in /in/hGWDt on line 8 rozne dlugosci Warning: ksort() expects parameter 1 to be array, null given in /in/hGWDt on line 22 identical
Output for 5.0.0 - 5.0.5
Warning: Missing argument 2 for testAnagram() in /in/hGWDt on line 7 rozne dlugosci Warning: ksort() expects parameter 1 to be array, null given in /in/hGWDt on line 20 Warning: Missing argument 2 for testAnagram() in /in/hGWDt on line 7 rozne dlugosci Warning: ksort() expects parameter 1 to be array, null given in /in/hGWDt on line 22 identical
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9
Warning: Missing argument 2 for testanagram() in /in/hGWDt on line 7 rozne dlugosci Warning: ksort() expects parameter 1 to be array, null given in /in/hGWDt on line 20 Warning: Missing argument 2 for testanagram() in /in/hGWDt on line 7 rozne dlugosci Warning: ksort() expects parameter 1 to be array, null given in /in/hGWDt on line 22 identical

preferences:
239.7 ms | 402 KiB | 348 Q