时间:2021-07-01 10:21:17 帮助过:4人阅读
$str = "string";
functiontest()
{if (isset($str))
{
echo"the string is defined";
}
else {
echo"the string is undefined";
}
}
test();
?>
这是在浏览器中的运行结果:
the string is undefined
$str = "string";
functiontest()
{global$str;//上面的test函数中没有这句话if (isset($str))
{
echo"the string is defined";
}
else {
echo"the string is undefined";
}
}
test();
?>
这是在浏览器中的运行结果:
the string is defined
$GLOBALS — 引用全局作用域中可用的全部变量
一个包含了全部变量的全局组合数组。变量的名字就是数组的键。
functiontest() {$foo = "local variable";
echo'$foo in global scope: ' . $GLOBALS["foo"] . "\n";
echo'$foo in current scope: ' . $foo . "\n";
}
$foo = "Example content";
test();
?>
以上例程的输出类似于:
$fooinglobal scope: Example content
$fooin current scope: localvariable
').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i <= lines; i++) {
$numbering.append($('').text(i));
};
$numbering.fadeIn(1700);
});
});
以上就介绍了 php中global的使用,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。