/cake/config/paths.php
/** * 公共图像目录的路径。*/ 定义('IMAGES', WWW_ROOT.'images'.DS);
/** * 公共图像目录的 Web 路径。*/ if (!defined('IMAGES_URL')) { define('IMAGES_URL', 'images/'); }
如何覆盖 /cake/config/paths.php 中设置的上述常量?我会将它们设置在 /app/config/bootstrap.php 吗?如果是这样,正确的语法是什么?
谢谢