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.
我需要创建一个文件来包含我网站中的所有字符串,并且我想使用 Cakephp 来引用该文件中的字符串,例如 android 中的 string.h。请帮我。
如果您需要将其用于翻译目的,您应该查看 cake 本地化支持。您在 'locale' 文件夹中创建语言的字符串文件,并使用__("string")而不是"string"这样 cake 将在与当前语言对应的文件夹中查找“字符串”的翻译。
__("string")
"string"
cakephp 1.3 中的文档
cakephp 2.0 中的文档
这是你在蛋糕上问的最接近的,如果这不是你的想法,你可能不得不从头开始写,