3v4l.org

run code in 300+ PHP versions simultaneously
<?php include('Crypt/AES.php'); $cipher = new Crypt_AES(); // it's cbc by default $cipher->setKeyLength(256); $cipher->setKey('abcdefghijklmnopijklmnopqrstuvwxyz3456'); $size = 10 * 1024; $plaintext = str_repeat('a', $size); echo $cipher->decrypt($cipher->encrypt($plaintext)); ?>
Output for 8.0.0 - 8.0.12, 8.0.14 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.7
Warning: include(): open_basedir restriction in effect. File(Crypt/AES.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/0fc61 on line 2 Warning: include(Crypt/AES.php): Failed to open stream: Operation not permitted in /in/0fc61 on line 2 Warning: include(): Failed opening 'Crypt/AES.php' for inclusion (include_path='.:') in /in/0fc61 on line 2 Fatal error: Uncaught Error: Class "Crypt_AES" not found in /in/0fc61:4 Stack trace: #0 {main} thrown in /in/0fc61 on line 4
Process exited with code 255.
Output for 8.0.13
Warning: include(Crypt/AES.php): Failed to open stream: No such file or directory in /in/0fc61 on line 2 Warning: include(): Failed opening 'Crypt/AES.php' for inclusion (include_path='.:') in /in/0fc61 on line 2 Fatal error: Uncaught Error: Class "Crypt_AES" not found in /in/0fc61:4 Stack trace: #0 {main} thrown in /in/0fc61 on line 4
Process exited with code 255.
Output for 7.3.32 - 7.3.33, 7.4.33
Warning: include(Crypt/AES.php): failed to open stream: No such file or directory in /in/0fc61 on line 2 Warning: include(): Failed opening 'Crypt/AES.php' for inclusion (include_path='.:') in /in/0fc61 on line 2 Fatal error: Uncaught Error: Class 'Crypt_AES' not found in /in/0fc61:4 Stack trace: #0 {main} thrown in /in/0fc61 on line 4
Process exited with code 255.
Output for 7.3.24 - 7.3.31, 7.4.12 - 7.4.32
Warning: include(): open_basedir restriction in effect. File(Crypt/AES.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/0fc61 on line 2 Warning: include(Crypt/AES.php): failed to open stream: Operation not permitted in /in/0fc61 on line 2 Warning: include(): Failed opening 'Crypt/AES.php' for inclusion (include_path='.:') in /in/0fc61 on line 2 Fatal error: Uncaught Error: Class 'Crypt_AES' not found in /in/0fc61:4 Stack trace: #0 {main} thrown in /in/0fc61 on line 4
Process exited with code 255.

preferences:
106.34 ms | 402 KiB | 119 Q