3v4l.org

run code in 300+ PHP versions simultaneously
<?php function saveDataFormatMessage($data,$key) { $str = ""; $i = 0; while ($i < strlen($key)) { if (strpos($str, $key[$i]) === false) { $str .= $key[$i]; } $i++; } unset($key);$key = $str;unset($str);unset($i); $i = 0; $str = $data.""; $rtn = ""; while ($i < strlen($str)) { $rtn .= substr($key,$str[$i],1); $i++; } return $rtn; } function showDataValueMessage($data,$key) { $str = ""; $i = 0; while ($i < strlen($key)) { if (strpos($str, $key[$i]) === false) { $str .= $key[$i]; } $i++; } unset($key);$key = $str;unset($str);unset($i); $i = 0; $str = $data.""; $rtn = ""; while ($i < strlen($str)) { $rtn .= strpos($key,$str[$i]).""; $i++; } return $rtn; } echo saveDataFormatMessage(98567320,md5(""))."\n"; echo showDataValueMessage(2b9f081d,md5(""));
Output for 5.4.0 - 5.4.28
Parse error: syntax error, unexpected 'b9f081d' (T_STRING) in /in/UhmB9 on line 37
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_STRING in /in/UhmB9 on line 37
Process exited with code 255.

preferences:
189.12 ms | 1394 KiB | 65 Q