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-- Test var_export() function : error conditions - recursive object --FILE-- <?php $..
Decoded Output download
--TEST--
Test var_export() function : error conditions - recursive object
--FILE--
<?php
$obj = new stdClass;
$obj->p =& $obj;
var_export($obj, true);
?>
--EXPECTF--
Warning: var_export does not handle circular references in %s on line %d
Did this file decode correctly?
Original Code
--TEST--
Test var_export() function : error conditions - recursive object
--FILE--
<?php
$obj = new stdClass;
$obj->p =& $obj;
var_export($obj, true);
?>
--EXPECTF--
Warning: var_export does not handle circular references in %s on line %d
Function Calls
None |
Stats
MD5 | 1e6d227303020c9d4aba38a14cb96b81 |
Eval Count | 0 |
Decode Time | 88 ms |