Voting

: eight minus six?
(Example: nine)

The Note You're Voting On

mail at mkharitonov dot net
11 years ago
Reference variables are returned by reference (tested on PHP 5.5.11):
<?php
$a
= null;
$b = &$a;
get_defined_vars()['b'] = 4;
var_dump($b); // int(4)
?>

<< Back to user notes page

To Top