$a = 1;
function b(&$c)
{
$c++;
return $c;
}
$d=b($a);
$d++;
echo($a);
?>
$a = 1;
function &b(&$c)
{
$c++;
return $c;
}
$d=&b($a);
$d++;
echo($a);
?>
Home >Backend Development >PHP Tutorial >Learn the examples of parameter reference return in dynamic web technology PHP_PHP tutorial
$a = 1;
function b(&$c)
{
$c++;
return $c;
}
$d=b($a);
$d++;
echo($a);
?>
$a = 1;
function &b(&$c)
{
$c++;
return $c;
}
$d=&b($a);
$d++;
echo($a);
?>