Home >Backend Development >PHP Tutorial >这样定义的常量 用的时候报错了

这样定义的常量 用的时候报错了

WBOY
WBOYOriginal
2016-06-06 20:14:251193browse

在下面引用的时候引用不到

<code>define("SITE_URL","localhost");
define("CSS_URL", SITE_URL."/a/shop/public/css/");</code>
<code><link href="%7B%24Think.const.CSS_URL%7Dstyle.css" rel="stylesheet" type="text/css"></code>

回复内容:

在下面引用的时候引用不到

<code>define("SITE_URL","localhost");
define("CSS_URL", SITE_URL."/a/shop/public/css/");</code>
<code><link href="%7B%24Think.const.CSS_URL%7Dstyle.css" rel="stylesheet" type="text/css"></code>

正确的使用方法是请在框架的入口文件中定义常量。

我试过了是可以的啊,你是不是把定义放在使用后边了

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn