Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php $details = [ "\x6d\x6f\x64\x75\x6c\x65" => $licenseOptions[1], ..
Decoded Output download
<?php
$details = [
"module" => $licenseOptions[1],
"is_theme_module" => $licenseOptions[2],
"theme_packages" => explode(',', $licenseOptions[3]),
"is_license_needed" => $licenseOptions[4],
]; ?>
Did this file decode correctly?
Original Code
<?php
$details = [
"\x6d\x6f\x64\x75\x6c\x65" => $licenseOptions[1],
"\x69\x73\x5f\x74\x68\x65\x6d\x65\x5f\x6d\x6f\x64\x75\x6c\x65" => $licenseOptions[2],
"\x74\x68\x65\x6d\x65\x5f\x70\x61\x63\x6b\x61\x67\x65\x73" => explode(',', $licenseOptions[3]),
"\x69\x73\x5f\x6c\x69\x63\x65\x6e\x73\x65\x5f\x6e\x65\x65\x64\x65\x64" => $licenseOptions[4],
];
Function Calls
None |
Stats
MD5 | b48c4587905d88502f8f381a62ef3fc5 |
Eval Count | 0 |
Decode Time | 72 ms |