Home >Backend Development >PHP Tutorial >懂php的来,文件读取写入问题

懂php的来,文件读取写入问题

WBOY
WBOYOriginal
2016-06-23 13:28:511038browse

数据库帐写密码信息一般是用什么函数写入到config.php这个文件里面的,然后又是通过什么方法读取到程序当中的呢


回复讨论(解决方案)

额,一个框架内,肯定有引进的地方,然后在对数组处理,不就可以了!!

可以将变量写入到数据库,填写完配置文件,读取数据库你填写的内容,生成config.php文件即可。

include("config.php");或者  
require("config.php") 这样去引用config.php

require(ROOT_PATH . 'data/config.php');

手动写进去,然后在需要的页面include("config.php"); 就可以了。

楼主的意思是不是,config.php里的那个return array(......)的数组是怎样被函数调用的??

我不懂 php,但我知道 数据库帐号密码 是手工 写入到config.php这个文件里面的
一般用 include 包含进来

我用的yii 一般在配置文件下。

	'components'=>array(/*        'user'=>array(            'class' => 'WebUser',        	'allowAutoLogin'=>true,            'loginUrl' => array('/user/login'),        ),*/		'db'=>array(		    'class'=>'CDbConnection',            'connectionString' => 'mysql:host=192.168.1.xx;dbname=xxx;port=3306',            'schemaCachingDuration' => 3600,            'emulatePrepare' => true,            'username' => 'root',            'password' => '123456',            'charset' => 'utf8',            'tablePrefix' => 'plat2_',            'enableProfiling'=>true,            'enableParamLogging'=>true,           		),

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn