在 CakePHP Shell 脚本中使用全局变量

发布于 2024-09-11 09:44:17 字数 150 浏览 4 评论 0原文

使用 CakePHP 的 shell 脚本,我在访问常量时遇到问题,这些常量通常在 config/bootstrap.php 中设置。

这是因为使用 shell 脚本时我没有执行正常的调度程序例程吗?跨 shell 脚本定义常量的最佳实践是什么?

谢谢。

Using CakePHP's shell scripts I'm having problems accessing constants, which I normally set within config/bootstrap.php.

Is this because using shell scripts I'm not going through the normal dispatcher routine? What's the best practice for defining constants across shell scripts?

Thanks.

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

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

发布评论

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

评论(1

や莫失莫忘 2024-09-18 09:44:17

您可以像这样在 app/config/bootstrap.php 中定义常量
定义(“ADMIN_TITLE”,“管理员”);

You can define the constant in app/config/bootstrap.php like this
define("ADMIN_TITLE", "Administrator");

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