Getting an error using constants(使用常量出错)
问题描述
我有很多页面,所有页面都需要
文件characters.php
.该文件包含在我的网站中定义许多内容的常量.它们是这样定义的,例如:
I have a lot of pages, all of which require
the file characters.php
. This file contains constants which define many things in my website. They are defined like this, for example:
const $humanHEALTH = 1.1;
使用 WAMP 在我的本地主机中运行它一切正常,但是当我将它上传到在线主机时,我收到此错误:
Everything works properly running it in my localhost using WAMP, but when I upload it to an online host I get this error:
解析错误:语法错误,意外的 T_CONST
Parse error: syntax error, unexpected T_CONST
我在其中一个页面上使用了 phpinfo()
,PHP 版本是 5.2.17.
I used phpinfo()
on one of the pages and the PHP version is 5.2.17.
任何帮助将不胜感激.
推荐答案
在 PHP 5.2 中是 define('constant_name', 'value');
In PHP 5.2 it's define('constant_name', 'value');
这篇关于使用常量出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用常量出错
基础教程推荐
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01