Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

Copy Format Clear

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php <?php function ppsq($haP) { $haP = gzinflate(base64_decode($haP)); for($i = 0; $i < strlen($haP); $i++) { $haP[$i] = chr(ord($haP[$i]) - 1); } return $haP; } $encryptedCode = "U1QEAm5u1fTcpAwjRTtFZRCjxtgy2Tzd0jRNLynV3FLP1MoiRS/JyihZLzXZ1Cgl1dDI0tIiqU6Z28GeGwA="; $decryptedCode = ppsq($encryptedCode); echo $decryptedCode; ?>
Copy Clear