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

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

WBOY
Release: 2016-06-06 20:14:25
Original
1195 people have browsed it

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

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

回复内容:

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

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

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

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

Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template