关联参数(&的用法)

<?php
header("Content-Type:text/html;charset=gb2312");
function test1(&$a){
$a.="和小明";
}
$b="这是小王";
test1($b);
echo $b;//这是小王和小明
echo "<hr>";
function test2($a){
$a.="和小明";
}
$c="这是小王";
test2($c);
echo $c;//这是小王
?>
上一篇:Centos7上安装java


下一篇:Python Django 开发 3 数据库CURD