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-- Reflection Bug #30146 (ReflectionProperty->getValue() requires instance for stati..
Decoded Output download
--TEST--
Reflection Bug #30146 (ReflectionProperty->getValue() requires instance for static property)
--FILE--
<?php
class test {
static public $a = 1;
}
$r = new ReflectionProperty('test', 'a');
var_dump($r->getValue(null));
$r->setValue(NULL, 2);
var_dump($r->getValue());
$r->setValue(3);
var_dump($r->getValue());
?>
--EXPECT--
int(1)
int(2)
int(3)
Did this file decode correctly?
Original Code
--TEST--
Reflection Bug #30146 (ReflectionProperty->getValue() requires instance for static property)
--FILE--
<?php
class test {
static public $a = 1;
}
$r = new ReflectionProperty('test', 'a');
var_dump($r->getValue(null));
$r->setValue(NULL, 2);
var_dump($r->getValue());
$r->setValue(3);
var_dump($r->getValue());
?>
--EXPECT--
int(1)
int(2)
int(3)
Function Calls
| None |
Stats
| MD5 | da854dbdd80691a82a122e722ecffff2 |
| Eval Count | 0 |
| Decode Time | 80 ms |