503f75d08b
These names don't make sense now that we run both suites the same way.
11 linhas
100 B
PHP
11 linhas
100 B
PHP
<?php
|
|
|
|
function foo(&$str) {
|
|
$str[3] = '.';
|
|
$str .= "\n";
|
|
}
|
|
|
|
$a = "abc";
|
|
foo($a);
|
|
var_dump($a);
|