3v4l.org

run code in 300+ PHP versions simultaneously
<?php $email = htmlentities('cal@gmail.com', ENT_QUOTES); $private_key = '6KzVA_2qy'; //possible de la changer function f_crypt($private_key, $str_to_crypt) { $private_key = md5($private_key); $letter = -1; $new_str = ''; $strlen = strlen($str_to_crypt); for ($i = 0; $i < $strlen; $i++) { $letter++; if ($letter > 31) { $letter = 0; } $neword = ord($str_to_crypt{$i}) + ord($private_key{$letter}); if ($neword > 255) { $neword -= 256; } $new_str .= chr($neword); } return base64_url_encode($new_str); } f_crypt($private_key, $email);
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.7
Fatal error: Array and string offset access syntax with curly braces is no longer supported in /in/4g27W on line 17
Process exited with code 255.
Output for 7.4.0 - 7.4.33
Deprecated: Array and string offset access syntax with curly braces is deprecated in /in/4g27W on line 17 Deprecated: Array and string offset access syntax with curly braces is deprecated in /in/4g27W on line 17 Fatal error: Uncaught Error: Call to undefined function base64_url_encode() in /in/4g27W:23 Stack trace: #0 /in/4g27W(28): f_crypt('061807151ceb81d...', 'cal@gmail.com') #1 {main} thrown in /in/4g27W on line 23
Process exited with code 255.
Output for 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33
Fatal error: Uncaught Error: Call to undefined function base64_url_encode() in /in/4g27W:23 Stack trace: #0 /in/4g27W(28): f_crypt('061807151ceb81d...', 'cal@gmail.com') #1 {main} thrown in /in/4g27W on line 23
Process exited with code 255.
Output for 5.6.0 - 5.6.40
Fatal error: Call to undefined function base64_url_encode() in /in/4g27W on line 23
Process exited with code 255.

preferences:
214.2 ms | 401 KiB | 292 Q