在 CakePHP Shell 脚本中使用全局变量
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以像这样在 app/config/bootstrap.php 中定义常量
定义(“ADMIN_TITLE”,“管理员”);
You can define the constant in app/config/bootstrap.php like this
define("ADMIN_TITLE", "Administrator");