PHP:我应该在哪里存储信息和文本的文本?警告信息

发布于 2024-08-19 20:07:34 字数 478 浏览 4 评论 0原文

我对我的项目代码的设计有疑问。 在大多数情况下,将内容与代码分开很重要(在较大的应用程序中将 HTML 与 PHP 混合=没有好主意,等等),但是我应该如何处理错误消息文本之类的内容?

假设这一条消息仅在一种情况/PHP 文件中使用:

MessageBox( 'Something gone wrong, probably your fault' );

MessageBox( Lang::error_usersfault );

(其中 Lang 是位于某个配置文件中的类,充满 const

  • 如果您有过类似上面示例中的事情的经验(我想每个 PHP 程序员都会遇到类似的事情) - 它们是什么?你是如何解决这个问题的?

  • 更好的解决方案是什么?

I have a question concerning the design of my project's Code.
In most cases, it is important to separate content from code (HTML mixed with PHP in bigger apps=No good idea, etc.) but how should I handle things like the text of error messages?

Assuming this one message will be only used in one case/PHP file:

MessageBox( 'Something gone wrong, probably your fault' );

or

MessageBox( Lang::error_usersfault );

(Where Lang is a class located in some config file, full of consts)

  • If you have any experiences (I think every PHP programmer will come across something like this) with things like in the example above - What are they? How do you solve it?

  • What is the better solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黑色毁心梦 2024-08-26 20:07:34

也许您会发现 php 扩展 gettext 很有用?

MessageBox(_("Have a nice day"));

Gettext::gettext的PHP手册

May be you'll find php extension gettext useful?

MessageBox(_("Have a nice day"));

PHP Manual of Gettext::gettext

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文