首页 >

PHP读取4种配置文件(php,ini,yaml,xml)方法总结

后端开发|php教程PHP读取4种配置文件(php,ini,yaml,xml)方法总结
php, php技巧
后端开发-php教程
PHP读取配置文件(php,ini,yaml,xml)方法
易语言分组框透明源码,苹果系统 vscode,ubuntu 变黑,tomcat 内存太大,sqlite工具导出特定字段,挂插件播放器,web前端最值得学的框架,微博用户爬虫在线时间,怎么面试php,沈阳seo搜索排名,免费销售网站模板下载,qq控制台网页版,led灯模板lzw
_settings;         foreach ($var as $key) {   if (!isset($result[$key])) { return false; }   $result = $result[$key];         }         return $result;        // trigger_error ('Not yet implemented', E_USER_ERROR);//引发一个错误       }       function load() {            trigger_error ('Not yet implemented', E_USER_ERROR);       }}/*** 针对PHP的配置,如有配置文件* $file=具体调用:include ('settings.php'); //原始环境假设每个类为单独的一个类名.php文件// Load settings (PHP)$settings = new Settings_PHP;$settings->load('config.php');echo 'PHP: ' . $settings->get('db.host') . '';**/Class Settings_PHP Extends Settings {function load ($file) {         if (file_exists($file) == false) { return false; }         // Include file         include ($file);unset($file);   //销毁指定变量$vars = get_defined_vars(); //返回所有已定义变量的列表,数组,变量包括服务器等相关变量,//通过foreach吧$file引入的变量给添加到$_settings这个成员数组中去.foreach ($vars as $key => $val) {         if ($key == 'this') continue;         $this->_settings[$key] = $val;}} }//////////////////////读取INI文件,主要用到parser_ini_file函数,该函数返回一个数组,如第二个参数为true时则返回多维数组//////////////////////////////////////////*** ini例子:* [db]name = testhost = localhost调用例子:$settings = new Settings_INI;$settings->load('config.ini');echo 'INI: ' . $settings->get('db.host') . '';**/Class Settings_INI Extends Settings {function load ($file) {         if (file_exists($file) == false) { return false; }         $this->_settings = parse_ini_file ($file, true);}}//////////////////////读取XML文件,需要用到XML_PARSER///////////////////////////////////////////////////////////*** XML例子:                test   localhost         调用例子:// Load settings (XML)$settings = New Settings_XML;$settings->load('config.xml');echo 'XML: ' . $settings->get('db.host') . '';**/Class Settings_XML Extends Settings {function load ($file) {       if (file_exists($file) == false) { return false; }       /**xmllib.php为PHP XML Library, version 1.2b,相关连接:http://keithdevens.com/software/phpxml       xmllib.php主要特点是把一个数组转换成一个xml或吧xml转换成一个数组       XML_unserialize:把一个xml给转换 成一个数组       XML_serialize:把一个数组转换成一个xml       自PHP5起,simpleXML就很不错,但还是不支持将xml转换成数组的功能,所以xmlLIB还是很不错的.       */       include ('xmllib.php');        $xml = file_get_contents($file);       $data = XML_unserialize($xml);       $this->_settings = $data['settings'];}}//////////////////////////////////读取YAML格式文件////////////////////////////////////////////////**使用YAML必须使用到SPYC这个库,相关链接在http://spyc.sourceforge.net/YAML配置例子:db:   name: test   host: localhost*/Class Settings_YAML Extends Settings {function load ($file) {       if (file_exists($file) == false) { return false; }       include ('spyc.php');       $this->_settings = Spyc::YAMLLoad($file);}}
网站源码修改搜索框移动位置,vscode如何安装npm,远程读写ubuntu,如何看tomcat启动,sqlite数据库多线程,花盆里有小白爬虫怎么去除,php 对象类型,新建区整站seo优化,手机设置管理网站首页,网上订书网站模板lzw

PHP读取4种配置文件(php,ini,yaml,xml)方法总结
  • PHP如何给一个类定义个别名?
  • PHP如何给一个类定义个别名? | PHP如何给一个类定义个别名? ...

    PHP读取4种配置文件(php,ini,yaml,xml)方法总结
  • PHP网站开发使用技巧小结!
  • PHP网站开发使用技巧小结! | PHP网站开发使用技巧小结! ...

    PHP读取4种配置文件(php,ini,yaml,xml)方法总结
  • PHP中把stdClass Object转array(对象转数组)的几个方法
  • PHP中把stdClass Object转array(对象转数组)的几个方法 | PHP中把stdClass Object转array(对象转数组)的几个方法 ...