<?php function printString(&$string){ echo($string); $string="打印完成"; } $str="测试字符!n"; printString($str); echo($str); ?> // 程序输出:测试字符! 打印完成