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-- ReflectionParameter::getPosition() --CREDITS-- Stefan Koopmanschap <stefan@stefan..

Decoded Output download

--TEST--
ReflectionParameter::getPosition()
--CREDITS--
Stefan Koopmanschap <[email protected]>
#testfest roosendaal on 2008-05-10
--FILE--
<?php
function ReflectionParameterTest($test, $test2 = null) {
    echo $test;
}
$reflect = new ReflectionFunction('ReflectionParameterTest');
$params = $reflect->getParameters();
foreach($params as $key => $value) {
    var_dump($value->getPosition());
}
?>
--EXPECT--
int(0)
int(1)

Did this file decode correctly?

Original Code

--TEST--
ReflectionParameter::getPosition()
--CREDITS--
Stefan Koopmanschap <[email protected]>
#testfest roosendaal on 2008-05-10
--FILE--
<?php
function ReflectionParameterTest($test, $test2 = null) {
    echo $test;
}
$reflect = new ReflectionFunction('ReflectionParameterTest');
$params = $reflect->getParameters();
foreach($params as $key => $value) {
    var_dump($value->getPosition());
}
?>
--EXPECT--
int(0)
int(1)

Function Calls

None

Variables

None

Stats

MD5 2bff09083977d4581d98fcae3377efdb
Eval Count 0
Decode Time 102 ms