标签:
ThinkPHP自3.1以后的版本,F函数保存数组时先序列化后再保存到文件中,因为我需要使用C方法来读取自定义配置文件,故需要把PHP数组保存到文件中以便C方法读取,PHP保存数组到文件的方法如下:
$siteConfig = array(‘siteName‘ => ‘小策一喋 - 专注WEB开发及系统运维技术‘,‘keyword‘ => ‘前端设计,后端开发,系统运维‘); $content = ‘<?php return ‘ . var_export($siteConfig, true) . ‘;‘; file_put_contents( APP_PATH . "Common/Conf/config_site.php", $content);
标签:
原文地址:http://www.cnblogs.com/yhdsir/p/5026244.html