3v4l.org

run code in 300+ PHP versions simultaneously
<?php function mymodule_decrypt_value($string) { // Si es una cadena vacía no hay nada que hacer if (empty($string)) { return FALSE; } $key ="12EstaClave34es56dificil489ssswf"; $iv ="Imphartoz.37hAES"; if (empty($key)) { watchdog('mymodule', 'No hay una clave para descifrar.', array(), WATCHDOG_ERROR); return FALSE; } if (empty($iv)) { watchdog('mymodule', 'No hay un vector de inicialización para descifrar.', array(), WATCHDOG_ERROR); return FALSE; } $plaintext_dec = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $key, base64_decode($string), MCRYPT_MODE_CBC, $iv); // Eliminar el padding return mymodule_unpadPKCS7($plaintext_dec); } function mymodule_unpadPKCS7($data) { $last = substr($data, -1); return substr($data, 0, strlen($data) - ord($last)); } mymodule_decrypt_value("V36B+ya6eMwElOoxswqGBw=="); echo "<h1>Hello, PHP!</h1>"; ?>
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function mcrypt_decrypt() in /in/7Xo8n:21 Stack trace: #0 /in/7Xo8n(33): mymodule_decrypt_value('V36B+ya6eMwElOo...') #1 {main} thrown in /in/7Xo8n on line 21
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
49.97 ms | 401 KiB | 8 Q