Zend’s Config class is in Zend_Config_Ini
Code
$config = new Zend_Config_Ini("/var/www/html/usvn/config/config.ini", "general");
date_default_timezone_set($config->timezone);
USVN_ConsoleUtils::setLocale($config->system->locale);
===
Config.ini file content
[general]
url.base = "/usvn"
translation.locale = "zh_CN"
timezone = "Asia/Shanghai"
Detailed analysis
Only the constructor of Zend_Config_Ini is used here, and we see its __construct.
The first step is to determine whether there is a configuration file. The second step is to manage the options. The options here can be set with the allowModifications attribute (whether the attributes in the configuration file can be modified) and the nestSeparator attribute (the key separator in the configuration file, which defaults to dot).
The following is calling $iniArray = $this->_loadIniFile($filename); This function is very important because it parses the configuration file. Following up, we first call _parseIniFile. In order to avoid confusion, let’s take a look at what the data returned by _parseIniFile looks like:
Array
(
[general] => Array
(
[url.base] => /usvn
[translation.locale ] => zh_CN
>The final thing parsed is a two-dimensional array.
parseIniFile actually calls the system function parse_ini_file for processing. Pay special attention here. Before and after calling parse_ini_file, it actually uses set_error_handler and restore_error_handler to expose the exception handling function. Because it is very easy to make errors when parsing configuration files, and the user prompt for this error should be very friendly, and it is best to prompt the user to make modifications there, so Zend deliberately exposes the error handling function. If you want to design a very friendly system, please override the method _loadFileErrorHandler in the inherited class.
Continue reading from _loadIniFile
Since [] is used in our ini configuration file to represent a set, the key returned by the two-dimensional array returned by _loadIniFile is general. But in fact, if we use [general:123] as section in the configuration file, then this function will return 123 as the val of [;extends]. It actually looks like this
Copy code
The code is as follows:Now we are back to __construct. At this time, the iniArray has been obtained. It is a two-dimensional array. If you set the acquisition section below, the iniArray will be processed_arrayMergeRecursive, mainly Change system.locale => aa_DJ.utf8 in key to array(system=> array( locale=>aa_DJ.utf8)). The nestSeparator attribute in options is used here. This attribute defaults to dot, that is, translation.locale will be separated into an array. For example, the nestSeparator you passed in earlier is a colon, then your configuration file should be set to translation:location = .. I won’t continue to pursue it here, it is nothing more than some string operations.
The final analyzed dataArray looks like this
Copy the code
The code is as follows:
Array
(
[url] => > Array
(
[locale] => zh_CN
)
[timezone] => (
.
class Zend_Config implements Countable, Iterator
Zend_Config implements Countable interface (including count() method), Iterator interface (including current, key, next, rewind, valid and other methods)
The constructor of Zend_Config puts the two-dimensional array analyzed above into _data.
Here we focus on two functions
__set and __get
The magic method __set ensures whether the configuration file can be modified. _allowModifications is used in set. If this attribute is set, then __setter can be set. Otherwise, an exception of Zend_Config is read only will be thrown. allowModifications is also an option. One of the properties set in .
At this point, look at the demo code at the front of the article
The reason why ->timezone can be used here is that __get is used instead of the attributes in config. The analysis of Zend’s Config mechanism is over.
http://www.bkjia.com/PHPjc/327070.html
www.bkjia.com
true
http: //www.bkjia.com/PHPjc/327070.html
Zend’s Config class is in Zend_Config_Ini code $config = new Zend_Config_Ini("/var/www/html/usvn/config /config.ini", "general"); date_default_timezone_set($config-timezone); USVN_Consol...

技嘉的主板怎么设置键盘开机首先,要支持键盘开机,一定是PS2键盘!!设置步骤如下:第一步:开机按Del或者F2进入bios,到bios的Advanced(高级)模式普通主板默认进入主板的EZ(简易)模式,需要按F7切换到高级模式,ROG系列主板默认进入bios的高级模式(我们用简体中文来示范)第二步:选择到——【高级】——【高级电源管理(APM)】第三步:找到选项【由PS2键盘唤醒】第四步:这个选项默认是Disabled(关闭)的,下拉之后可以看到三种不同的设置选择,分别是按【空格键】开机、按组

1.处理器在选择电脑配置时,处理器是至关重要的组件之一。对于玩CS这样的游戏来说,处理器的性能直接影响游戏的流畅度和反应速度。推荐选择IntelCorei5或i7系列的处理器,因为它们具有强大的多核处理能力和高频率,可以轻松应对CS的高要求。2.显卡显卡是游戏性能的重要因素之一。对于射击游戏如CS而言,显卡的性能直接影响游戏画面的清晰度和流畅度。建议选择NVIDIAGeForceGTX系列或AMDRadeonRX系列的显卡,它们具备出色的图形处理能力和高帧率输出,能够提供更好的游戏体验3.内存电

在安装应用程序的新版本时,Windows可能会显示此错误消息“解析C:\\Windows\Microsoft.Net\Framework\v2.0.50727\Config\machine.configParser返回错误0xC00CE556时出错”。当您的系统启动时,这个问题也会出现。无论您在何种情况下遇到此问题,.NETFramework都是幕后真正的罪魁祸首。您可以使用一些非常简单的修复程序来阻止此错误代码再次出现。修复1–替换损坏的文件您可以轻松地从原始目录中替换损坏的ma

广联达软件是一家专注于建筑信息化领域的软件公司,其产品被广泛应用于建筑设计、施工、运营等各个环节。由于广联达软件功能复杂、数据量大,对电脑的配置要求较高。本文将从多个方面详细阐述广联达软件的电脑配置推荐,以帮助读者选择适合的电脑配置处理器广联达软件在进行建筑设计、模拟等操作时,需要进行大量的数据计算和处理,因此对处理器的要求较高。推荐选择多核心、高主频的处理器,如英特尔i7系列或AMDRyzen系列。这些处理器具有较强的计算能力和多线程处理能力,能够更好地满足广联达软件的需求。内存内存是影响计算

主板上SPDIFOUT连接线序最近我遇到了一个问题,就是关于电线的接线顺序。我上网查了一下,有些资料说1、2、4对应的是out、+5V、接地;而另一些资料则说1、2、4对应的是out、接地、+5V。最好的办法是查看你的主板说明书,如果找不到说明书,你可以使用万用表进行测量。首先找到接地,然后就可以确定其他的接线顺序了。主板vdg怎么接线连接主板的VDG接线时,您需要将VGA连接线的一端插入显示器的VGA接口,另一端插入电脑的显卡VGA接口。请注意,不要将其插入主板的VGA接口。完成连接后,您可以

如何在Zend框架中使用ACL(AccessControlList)进行权限控制导言:在一个Web应用程序中,权限控制是至关重要的一项功能。它可以确保用户只能访问其有权访问的页面和功能,并防止未经授权的访问。Zend框架提供了一种方便的方法来实现权限控制,即使用ACL(AccessControlList)组件。本文将介绍如何在Zend框架中使用ACL

随着PHP语言的不断发展,做为PHP后端框架中广泛使用的ThinkPHP也在不断完善。随着业务场景的逐渐复杂,ThinkPHP中对于配置管理的需求也越来越大。在这种背景下,ThinkPHP提供了丰富的配置管理功能,今天我们就来介绍一下如何通过ThinkPHPConfig实现配置管理。一、ThinkPHPConfig的介绍ThinkPHPConfig是Thin

我准备去西藏旅行背包去①背多少升的包合适把你认为最好的配置说下本人170体力不错第一次去徒步多就60升或以上的徒步少就60升以下的全程都坐车就不用背包,旅行箱更方便,真要随身带东西,弄个25~40升的就绰绰有馀西藏旅游必备用品:太阳镜、太阳帽、防晒霜、护肤霜、润唇膏、长袖上衣、毛衣;对于特殊旅游或去阿里、藏北、川藏线旅游,建议带:睡袋(防寒)、床单(防脏)、羽绒服、旅游鞋或登山鞋、拖鞋、牙刷、牙膏、毛巾、卷筒纸、纸内裤、消毒湿巾、手电筒、防水火柴、刀具、绳子。前运包能装电脑吗能装电脑,有些背包有


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

Atom editor mac version download
The most popular open source editor

WebStorm Mac version
Useful JavaScript development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1
Easy-to-use and free code editor
