<?
function hoge_r(&$s) {
    $s[1] = "1";
}

function hoge($s) {
    hoge_r($s);
}

$a = "abc";
$b = $a;
hoge($a);
print $a."\n";

hoge_r($a);
print $a."\n";
print $b."\n";
