test - 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 test.php

  1. <?php
  2.         //Enter your code here, enjoy!
  3.  
  4. $data="NzcyWVhzNXk3R1JhN3F2Rk52U3VBNGZtN21MWWM5UTRha0Yxcm94bFNDZW9kZWJVeU9aQUsxMmVodVJwSDNkdksvSlVSK1o2dUlUT1dTdEFGbzk3eXgrdDI2RmxlcThtOGtKT2lKQWZ3QTVrQ0tPRjZHcm94djlhcURxKzE0ZHFFZHNGT2ZsT3lxaWs2V3RDVzZHUTdXR002aGhPck56cUhIYVlHMUhieTAvekNQTEJuS0VmSWtJL1dkSDFaRjhxcGZrSlplMkw2ZE54RW04SFNpTXJFVWFOZ0xaMFlrUzBJb0R2YWV2bHVoZGNvZHg5VUpVMXk1cFN2d0VETm1MMUlGK25MTE9Wd0dIM1lRVUphUT09";
  5.  
  6. $response = @base64_decode($data, true);
  7.  
  8. $response = @openssl_decrypt(
  9.             $response,
  10.             "AES-128-CFB1",
  11.             "b9bf9b80051834fc8f6e9c20247cc282",
  12.             OPENSSL_ZERO_PADDING
  13.         );
  14.  
  15. $response = @gzuncompress($response);
  16.  
  17. // for($i = 0; $i < strlen($response); $i++)
  18. // {
  19. //   echo ord($response[$i]);
  20. //   echo ", ";
  21. // }
  22.  
  23. echo $response
  24.  
  25. ?>
  26.  
File Description
  • test
  • PHP Code
  • 12 Apr-2021
  • 801 Bytes
You can Share it: