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-- runkit_import() Importing and overriding class properties --SKIPIF-- <?php if(!ex..
Decoded Output download
--TEST--
runkit_import() Importing and overriding class properties
--SKIPIF--
<?php if(!extension_loaded("runkit") || !RUNKIT_FEATURE_MANIPULATION) print "skip";
if(array_shift(explode(".", PHP_VERSION)) < 5) print "skip";
?>
--FILE--
<?php
class Test {
public static $s = "s";
public $v = "v";
}
$o = new Test;
echo $o->v, "
";
echo Test::$s, "
";
runkit_import(dirname(__FILE__) . '/runkit_import_class_property.inc', RUNKIT_IMPORT_CLASS_PROPS);
$o = new Test;
echo $o->v, "
";
echo Test::$s, "
";
runkit_import(dirname(__FILE__) . '/runkit_import_class_property.inc', RUNKIT_IMPORT_CLASS_PROPS | RUNKIT_IMPORT_CLASS_STATIC_PROPS | RUNKIT_IMPORT_OVERRIDE);
echo $o->v, "
";
$o = new Test;
echo $o->v, "
";
echo Test::$s, "
";
$o->v = 'v';
echo $o->v, "
";
runkit_import(dirname(__FILE__) . '/runkit_import_class_property.inc', RUNKIT_IMPORT_CLASS_PROPS | RUNKIT_IMPORT_CLASS_STATIC_PROPS | RUNKIT_IMPORT_OVERRIDE | RUNKIT_OVERRIDE_OBJECTS);
echo $o->v, "
";
?>
--EXPECTF--
v
s
Notice: runkit_import(): Test->v already exists, not importing in %s on line %d
v
s
v
IMPORTED: v
IMPORTED: s
v
IMPORTED: v
Did this file decode correctly?
Original Code
--TEST--
runkit_import() Importing and overriding class properties
--SKIPIF--
<?php if(!extension_loaded("runkit") || !RUNKIT_FEATURE_MANIPULATION) print "skip";
if(array_shift(explode(".", PHP_VERSION)) < 5) print "skip";
?>
--FILE--
<?php
class Test {
public static $s = "s";
public $v = "v";
}
$o = new Test;
echo $o->v, "\n";
echo Test::$s, "\n";
runkit_import(dirname(__FILE__) . '/runkit_import_class_property.inc', RUNKIT_IMPORT_CLASS_PROPS);
$o = new Test;
echo $o->v, "\n";
echo Test::$s, "\n";
runkit_import(dirname(__FILE__) . '/runkit_import_class_property.inc', RUNKIT_IMPORT_CLASS_PROPS | RUNKIT_IMPORT_CLASS_STATIC_PROPS | RUNKIT_IMPORT_OVERRIDE);
echo $o->v, "\n";
$o = new Test;
echo $o->v, "\n";
echo Test::$s, "\n";
$o->v = 'v';
echo $o->v, "\n";
runkit_import(dirname(__FILE__) . '/runkit_import_class_property.inc', RUNKIT_IMPORT_CLASS_PROPS | RUNKIT_IMPORT_CLASS_STATIC_PROPS | RUNKIT_IMPORT_OVERRIDE | RUNKIT_OVERRIDE_OBJECTS);
echo $o->v, "\n";
?>
--EXPECTF--
v
s
Notice: runkit_import(): Test->v already exists, not importing in %s on line %d
v
s
v
IMPORTED: v
IMPORTED: s
v
IMPORTED: v
Function Calls
extension_loaded | 1 |
Stats
MD5 | f3ad7ee406390fe243b0e208856af20b |
Eval Count | 0 |
Decode Time | 123 ms |