what is "_" in php, and why it's a valid function when it's not defined.
# code will pass that check. and it will print "_"
if(function_exists("_"))
{
print f('_');
}
also when i try to print ( it works, but gives me Notice )
print _;
php give me Notice.
Notice: Use of undefined constant _ - assumed '_'
so i used constant function and try to get his value,
print constant("_");
but what i get is
Warning: constant() [function.constant]: Couldn't find constant _ in
what i'm doing wrong here ?