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-- Test current() function : usage variations - reference & normal parameters --FILE..

Decoded Output download

*** Testing current() : usage variations ***

-- Function: reference parameter --

Did this file decode correctly?

Original Code

--TEST--
Test current() function : usage variations - reference & normal parameters
--FILE--
<?php
echo "*** Testing current() : usage variations ***\n";

echo "\n-- Function: reference parameter --\n";

function current_variation5_ref(&$a)
{
    var_dump(current($a));
    var_dump(next($a));
}

$a = array('yes', 'maybe', 'no');

var_dump(current($a));
var_dump(next($a));
current_variation5($a);

echo "\n-- Function: normal parameter --\n";

function current_variation5($a)
{
    var_dump(current($a));
    var_dump(next($a));
}

$a = array('yes', 'maybe', 'no');

var_dump(current($a));
var_dump(next($a));
current_variation5($a);

?>
--EXPECT--
*** Testing current() : usage variations ***

-- Function: reference parameter --
string(3) "yes"
string(5) "maybe"
string(5) "maybe"
string(2) "no"

-- Function: normal parameter --
string(3) "yes"
string(5) "maybe"
string(5) "maybe"
string(2) "no"

Function Calls

current 1

Variables

$a [{'key': 0, 'value': 'yes'}, {'key': 1, 'value': 'maybe'}, {'key': 2, 'value': 'no'}]

Stats

MD5 d807cacdd3c8deb6c0b89d4eeb332c87
Eval Count 0
Decode Time 112 ms