Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有这段代码,它用于图像上传系统:
return (getBoolPreference('enableField#images@items'));
我从未在代码中看到# 和@。如果您能说出这是做什么的以及 andreturn的含义是什么,我将不胜感激#@
return
#
@
'enableField#images@items'只不过是该语法中的 PHP 字符串。只有你的getBoolPreference函数可以告诉你string在你的程序中是如何使用它的。
'enableField#images@items'
getBoolPreference
string
您的return语句返回getBoolPreference一个字符串传递给它时生成的输出'enableField#images@items',仅此而已。