结构如下:
Application
--Home
--Admin
--Common
,现在我在Common--Conf--config.php里如下定义:
return array(
//'配置项'=>'配置值'
'TMPL_PARSE_STRING' => array(
'APP_CSS' => '/first/Public/css'
),
);
定义的这个APP_CSS,运用在Home模块里的index.html里是可以正常解析的。但是运用到Home模块的index.html里却不能解析出来,查看元素是APP_CSS原样输出。请问这是什么原因?还是手册哪里看漏了, 望指教。