3v4l.org

run code in 300+ PHP versions simultaneously
<?php $email= 'm6udrKWplpyWyNCQnqOkmaKWmp-SxdPR'; $private_key = '6KzVA_2qy'; //possible de la changer function base64_url_decode($input) { return base64_decode(strtr($input, '-_,', '+/=')); } //fonction de decryptage function f_decrypt($private_key, $str_to_decrypt) { $private_key = md5($private_key); $letter = -1; $new_str = ''; $str_to_decrypt = base64_decode($str_to_decrypt); $strlen = strlen($str_to_decrypt); for ($i = 0; $i < $strlen; $i++) { $letter++; if ($letter > 31) { $letter = 0; } $neword = ord($str_to_decrypt{$i}) - ord($private_key{$letter}); if ($neword < 1) { $neword += 256; } $new_str .= chr($neword); } return $new_str; } echo f_decrypt($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.4, 8.3.6
Fatal error: Array and string offset access syntax with curly braces is no longer supported in /in/HUdR9 on line 25
Process exited with code 255.
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Fatal error: Array and string offset access syntax with curly braces is no longer supported in /in/HUdR9 on line 25
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/HUdR9 on line 25 Deprecated: Array and string offset access syntax with curly braces is deprecated in /in/HUdR9 on line 25 kulturegeek.fr@gmaiaM�
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 7.3.33
kulturegeek.fr@gmaiaM�

preferences:
138.26 ms | 402 KiB | 173 Q