gpt4 book ai didi

IF 内的 PHP 常量

转载 作者:行者123 更新时间:2023-12-04 00:08:35 29 4
gpt4 key购买 nike

在 PHP 中遇到常量问题想知道是否有人可以解释:

这行得通

const _ROOT = 'd:/aphp/www';

echo "r="._ROOT;

就像这样:

if (true) 
define('_ROOT','d:/aphp/www');

echo "r="._ROOT;

但这给出了错误:解析错误:语法错误,意外的 T_CONST

if (true) 
const _ROOT = 'd:/aphp/www';

echo "r="._ROOT;

我使用的是 php 5.3.2

最佳答案

那是因为..

const 关键字必须在顶级作用域中声明

来自 PHP 文档

Note: As opposed to defining constants using define(), constants defined using the const keyword must be declared at the top-level scope because they are defined at compile-time. This means that they cannot be declared inside functions, loops or if statements.

Source

关于IF 内的 PHP 常量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21824363/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com