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
ここで何が間違っているのですか?