Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- SPL: DoublyLinkedList: recursive var_dump --FILE-- <?php $a = new SplDoublyLinked..
Decoded Output download
--TEST--
SPL: DoublyLinkedList: recursive var_dump
--FILE--
<?php
$a = new SplDoublyLinkedList;
$a[] = $a;
var_dump($a);
?>
--EXPECTF--
object(SplDoublyLinkedList)#%d (2) {
["flags":"SplDoublyLinkedList":private]=>
int(0)
["dllist":"SplDoublyLinkedList":private]=>
array(1) {
[0]=>
*RECURSION*
}
}
Did this file decode correctly?
Original Code
--TEST--
SPL: DoublyLinkedList: recursive var_dump
--FILE--
<?php
$a = new SplDoublyLinkedList;
$a[] = $a;
var_dump($a);
?>
--EXPECTF--
object(SplDoublyLinkedList)#%d (2) {
["flags":"SplDoublyLinkedList":private]=>
int(0)
["dllist":"SplDoublyLinkedList":private]=>
array(1) {
[0]=>
*RECURSION*
}
}
Function Calls
None |
Stats
MD5 | f0a69ba5249ff20d084dbd0cfd5c72fb |
Eval Count | 0 |
Decode Time | 104 ms |