apache_conf 用php轻松配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache_conf 用php轻松配置相关的知识,希望对你有一定的参考价值。

<?php

namespace Acme\Helpers;

class Config
{
    protected $data;

    protected $default = null;

    public function load($file)
    {
        $this->data = require $file;
    }

    public function get($key, $default = null)
    {
        $this->default = $default;

        $segments = explode('.', $key);
        $data = $this->data;

        foreach ($segments as $segment) {
            if (isset($data[$segment])) {
                $data = $data[$segment];
            } else {
                $data = $this->default;
                break;
            }
        }

        return $data;
    }

    public function exists($key)
    {
        return $this->get($key) !== $this->default;
    }
}

以上是关于apache_conf 用php轻松配置的主要内容,如果未能解决你的问题,请参考以下文章

apache_conf 保护WordPress配置wp-config.php文件

apache_conf WordPress .htaccess配置文件。允许强制SSL,隐藏wp-config.php,标头ETag,GZIP压缩和过期缓存。

apache_conf 显示PHP错误/ PHPのエラーを表示

apache_conf 适用于PHP 7.0或PHP 7.1

apache_conf 适用于PHP 7.0或PHP 7.1

apache_conf 适用于PHP 7.0或PHP 7.1