什么是 php 中的“_”,以及为什么它在未定义时是有效函数。
# code will pass that check. and it will print "_"
if(function_exists("_"))
{
print f('_');
}
当我尝试打印时(它有效,但给了我通知)
print _;
php 给我通知。
Notice: Use of undefined constant _ - assumed '_'
所以我使用常量函数并尝试获取他的值,
print constant("_");
但我得到的是
Warning: constant() [function.constant]: Couldn't find constant _ in
我在这里做错了什么?