我今天尝试了这段代码!但它没有给出我期望的输出..这是我的代码..
<?php
namePrint('Rajitha');
function namePrint($name) {
echo $name;
}
wrap('tobaco');
function wrap($txt) {
global $name;
echo "Your username is ".$name." ".$txt."";
}
?>
此代码将打印在屏幕上
RajithaYour username is tobaco
但我想得到
RajithaRajithaYour username is tobaco
我的问题是:为什么 wrap 函数中的 $name 变量不起作用?
谢谢。