503f75d08b
These names don't make sense now that we run both suites the same way.
13 linhas
91 B
PHP
13 linhas
91 B
PHP
<?php
|
|
|
|
function run() {
|
|
$a = 5;
|
|
$b =& $a;
|
|
|
|
$b = 3;
|
|
|
|
return $a;
|
|
}
|
|
|
|
var_dump(run());
|