gpt4 book ai didi

PHP OOP - 如何定义带有变量或函数输出的 CONST?

转载 作者:行者123 更新时间:2023-12-02 07:32:19 27 4
gpt4 key购买 nike

我的具体情况是,我正在尝试将路径定义为常量。现在我这样硬编码:

class Cache
{
const PATH_TO_CACHE = '/home/site/public_html/wp-content/themes/theme/cache/';

但我需要定义是可移植的。所以可以检测路径,放入变量,然后放入类。本质上,我想要完成的是:

$somepath = {code to get path};

class Cache
{
const PATH_TO_CACHE = $somepath;

最佳答案

我喜欢为此使用依赖注入(inject)。例如:

class Cache {

private $path_to_cache;

function __construct($cache_path) {
$this->path_to_cache = $cache_path;
}

}

然后您可以使用定义的设置:

$cache = new Cache($GLOBALS['config']['cache_path']);
$cache = new Cache($_SERVER['cache_path']);
$cache = new Cache($some_other_way_to_get_cache_path);

等等

您也可以在开发/调试时轻松更改路径:

$cache = new Cache('path/to/folder/that/is/being/problematic');

关于PHP OOP - 如何定义带有变量或函数输出的 CONST?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20572036/

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