gpt4 book ai didi

php - 静态变量问题

转载 作者:行者123 更新时间:2023-12-02 22:12:29 25 4
gpt4 key购买 nike

我定义了这个静态变量,但我的代码出现错误:

..意外的“$_SERVER”(T_VARIABLE)在......

class Constants {
const ACCOUNTTYPE_SUPER_ADMIN = 1;
const ACCOUNTTYPE_COMPANY_ADMIN = 2;
const ACCOUNTTYPE_AREA_ADMIN = 3;
const ACCOUNTTYPE_END_USER = 4;

const SAVETYPE_NEW = 0;
const SAVETYPE_EDIT = 1;

const LICENSE_VALIDITY_YEARS = 1;
const LICENSE_VALIDITY_LEFT_MAX = 12;

public static $template_path = $_SERVER['DOCUMENT_ROOT'] . '/../_html/';
}

最佳答案

您不能以这种方式使用变量声明静态变量,但您可以使用变通方法:

class Constants {
...

public static $template_path;
}

Constants::$template_path = $_SERVER['DOCUMENT_ROOT'] . '/../_html/';

关于php - 静态变量问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15023099/

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