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-- get_object_vars() - ensure statics are not shown --FILE-- <?php Class A { pub..

Decoded Output download

--TEST--
get_object_vars() - ensure statics are not shown
--FILE--
<?php
Class A {
    public static $var = 'hello';
}

$a = new A;
var_dump(get_object_vars($a));
?>
--EXPECT--
array(0) {
}

Did this file decode correctly?

Original Code

--TEST--
get_object_vars() - ensure statics are not shown
--FILE--
<?php
Class A {
    public static $var = 'hello';
}

$a = new A;
var_dump(get_object_vars($a));
?>
--EXPECT--
array(0) {
}

Function Calls

None

Variables

None

Stats

MD5 ba5315492b0f2d135278c98ae178de27
Eval Count 0
Decode Time 85 ms