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-- CallbackFilterIterator --FILE-- <?php class A { function test($value, $key, ..
Decoded Output download
--TEST--
CallbackFilterIterator
--FILE--
<?php
class A {
function test($value, $key, $inner) {
return test($value, $key, $inner);
}
}
class B {
static function test($value, $key, $inner) {
return test($value, $key, $inner);
}
}
function test($value, $key, $inner) {
printf("%s / %s / %d / %d
"
, $value
, $key
, $value == $inner->current()
, $key == $inner->key()
);
return $value === 1 || $value === 4;
}
$tests = array(
'instance method' => function() { return array(new A, 'test'); },
'static method' => function() { return array('B', 'test'); },
'static method (2)' => function() { return 'B::test'; },
'function' => function() { return 'test'; },
'anonymous function' => function() { return function($value, $key, $inner) { return test($value, $key, $inner); }; },
);
foreach($tests as $name => $test) {
$callback = $test();
$it = new ArrayIterator(range(1, 5));
$it = new CallbackFilterIterator($it, $callback);
echo " = $name =
";
foreach($it as $value) {
echo "=> $value
";
}
// same test, with no reference to callback
$it = new ArrayIterator(range(1, 5));
$it = new CallbackFilterIterator($it, $test());
unset($callback);
foreach($it as $value) {
echo "=> $value
";
}
}
?>
--EXPECT--
= instance method =
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
= static method =
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
= static method (2) =
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
= function =
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
= anonymous function =
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
Did this file decode correctly?
Original Code
--TEST--
CallbackFilterIterator
--FILE--
<?php
class A {
function test($value, $key, $inner) {
return test($value, $key, $inner);
}
}
class B {
static function test($value, $key, $inner) {
return test($value, $key, $inner);
}
}
function test($value, $key, $inner) {
printf("%s / %s / %d / %d\n"
, $value
, $key
, $value == $inner->current()
, $key == $inner->key()
);
return $value === 1 || $value === 4;
}
$tests = array(
'instance method' => function() { return array(new A, 'test'); },
'static method' => function() { return array('B', 'test'); },
'static method (2)' => function() { return 'B::test'; },
'function' => function() { return 'test'; },
'anonymous function' => function() { return function($value, $key, $inner) { return test($value, $key, $inner); }; },
);
foreach($tests as $name => $test) {
$callback = $test();
$it = new ArrayIterator(range(1, 5));
$it = new CallbackFilterIterator($it, $callback);
echo " = $name =\n";
foreach($it as $value) {
echo "=> $value\n";
}
// same test, with no reference to callback
$it = new ArrayIterator(range(1, 5));
$it = new CallbackFilterIterator($it, $test());
unset($callback);
foreach($it as $value) {
echo "=> $value\n";
}
}
?>
--EXPECT--
= instance method =
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
= static method =
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
= static method (2) =
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
= function =
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
= anonymous function =
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
1 / 0 / 1 / 1
=> 1
2 / 1 / 1 / 1
3 / 2 / 1 / 1
4 / 3 / 1 / 1
=> 4
5 / 4 / 1 / 1
Function Calls
None |
Stats
MD5 | 67164bf9c7af82a53dfbc19525a8c942 |
Eval Count | 0 |
Decode Time | 94 ms |