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 $books = new StdClass(); $books->title = "My lists"; $books->chapter = [ "tit..
Decoded Output download
<?php
$books = new StdClass();
$books->title = "My lists";
$books->chapter = [
"title" => "My books",
"para" => [
"informaltable" => [
"tgroup" => [
"thead" => [
"Title",
"Author",
"Language",
"ISBN"
],
"tbody" => [
[
"The Grapes of Wrath",
"John Steinbeck",
"en",
"0140186409"
],
[
"The Pearl",
"John Steinbeck",
"en",
"014017737X"
],
[
"Samarcande",
"Amine Maalouf",
"fr",
"2253051209"
]
]
]
]
]
];
?>
Did this file decode correctly?
Original Code
<?php
$books = new StdClass();
$books->title = "My lists";
$books->chapter = [
"title" => "My books",
"para" => [
"informaltable" => [
"tgroup" => [
"thead" => [
"Title",
"Author",
"Language",
"ISBN"
],
"tbody" => [
[
"The Grapes of Wrath",
"John Steinbeck",
"en",
"0140186409"
],
[
"The Pearl",
"John Steinbeck",
"en",
"014017737X"
],
[
"Samarcande",
"Amine Maalouf",
"fr",
"2253051209"
]
]
]
]
]
];
Function Calls
None |
Stats
MD5 | c73d19ccabb4ce345057e5e83efa127f |
Eval Count | 0 |
Decode Time | 95 ms |