发布网友 发布时间:2022-04-07 10:35
共4个回答
热心网友 时间:2022-04-07 12:04
在php中,如果在函数中使用全局变量,php会认为这个变量没有定义。如果我们需要在函数内部使用这个全局变量,这时我们就需要在函数内部,这个全局变量前加关键字global。
<?php<?php
$str = "string";
function test()
{
global $str;//上面的test函数中没有这句话
if (isset($str))
{
echo "the string is defined";
}
else
{
echo "the string is undefined";
}
}
test();
?>
浏览器中的运行结果:
this string is defined
热心网友 时间:2022-04-07 13:22
global PHP关键字 意思就是全局的热心网友 时间:2022-04-07 14:57
"$"就是dollar,一l般指美元i,也f被亲切0的称为8“刀m”,“美刀w”。比4如600美元b的东西,可以6叫做700刀y 至于fphp里为1什6么n这么m多$,这说明php很有钱途啊!!学好了pphp就可以1赚大d把大g把的刀d!!! 呵呵,其实以0$开d头的都是php里的变量,至于q变量是什2么o,这个a就不i用我说了o吧fΥィbs獭铡vォq浮〔yi薄lut热心网友 时间:2022-04-07 16:48
参考楼上。。。