//入口文件自定义的常量 <?php header("content-type:text/html;charset=utf-8"); //定义css,images,js位置常量 define("SITE_URL","localhost/"); define("CSS_URL",SITE_URL."book/public/css"); define("JS_URL",SITE_URL."book/public/js"); define("IMAGES_URL",SITE_URL."book/public/images"); define("APP_DEBUG", true); include '../ThinkPHP/ThinkPHP.php'; ?> //模板中的使用 <link type="text/css" rel="stylesheet" href="{$Think.const.CSS_URL}/reset.css"> <link type="text/css" rel="stylesheet" href="{$Think.const.CSS_URL}/main.css">
雪颲