⑴ config.php的问题。

// 数据库用户
define('DB_USER', 'root');
//数据库密码
define('DB_PASSWORD', '123');
主要改这两句啊
你要是用mysql
mysql里有个权限设置,你可专以设置你的数据库用属户为root密码为123456
然后再把// 数据库用户
define('DB_USER', 'root');
//数据库密码
define('DB_PASSWORD', '123456');
这样就好了

⑵ config.php

<?php

// Normally mysql //普通mysql
$dbtype = 'test'; //照字面解释,应该是数据库类型,设置值是测试。

// This is normally set to localhost
$host = ''; //数据库地址内,如果不是标准的容3306就用冒号标出,如 xxx.xxx:3333

// MySQL username
$user = ''; //连接数据库用户名

// MySQL password
$password = ''; //连接数据库密码

// MySQL database name
$dbname = ''; //存储的数据库名称
$dbprefix = 'fcl_'; //数据库名的前辍,如果同一个库安装多个系统,可以用来区别。

⑶ php 如何使用config配置文件

以下为Discuz中的php config文件实例,请参考:

$_config=array();

$_config['debug']=1;

//----------------------------CONFIGDB-----------------------------//
$_config['db']['1']['dbhost']='localhost';
$_config['db']['1']['dbuser']='x31_gbk';
$_config['db']['1']['dbpw']='x31_gbk';
$_config['db']['1']['dbcharset']='gbk';
$_config['db']['1']['pconnect']='0';
$_config['db']['1']['dbname']='x31_gbk';
$_config['db']['1']['tablepre']='pre_';
$_config['db']['slave']='';
$_config['db']['common']['slave_except_table']='';

⑷ php文件引入config.php文件

没有问题呀。
别好像,到底出现了什么问题你说出来。

⑸ 这个config.php该怎么配置

配置抄这里
$DB_HOST = 'athena-mysql'; ---mysql主机名或袭者ip地址
$DB_USER = 'root'; --用户名
$DB_PASS = '123456'; ---密码
$DB_NAME = 'athena2'; ---数据库名称

⑹ config.php 数据库配置如何修改

$db_host = "数据库地址:3306";
$db_name = "数据表名";
$db_user = "数据库用户名";
$db_pass = "数据库密码";
改这几个就可以了啊

⑺ config.php文件的配置问题!!

// 数据库用户
define('DB_USER', 'root');
//数据库密码
define('DB_PASSWORD', '123');
主要改这两句啊
你要是用mysql
mysql里有个权限设置回,你可以设置你的数据库用户为答root密码为123456
然后再把// 数据库用户
define('DB_USER', 'root');
//数据库密码
define('DB_PASSWORD', '123456');
这样就好了

⑻ php 如何去操作config.php

直接require_once("config.php")后,这个文件里面的变量就能用了.


写入配置:


<?php
//....假设这些变量都已经更改过了,譬如通过post更改设置,这里已经拿到:
$cfg="<?";
$cfg.=<<<EOF
php
$cl_close=$cl_close;
$cl_weburl="$cl_weburl";
?
EOF;
$cfg.=">";
file_put_contents("config.php",$cfg);
?>

大概这个样子, 就是用php 输出一份php文件~ php 的 include /require 很好用的.

其他建议方法, 采用json_encode/json_decode 来加载/保存配置为 Json格式, 譬如

声明一个配置类:

classConfig{
var$cl_close=0;
var$cl_weburl=".....";
/...
}

2. 读取配置:


if(file_exists("config.data")){
$config=json_decode(file_get_contents("config.data");
}else{
$config=newConfig();
$config->cl_close=...//初始化
}
echo$config->cl_close;//访问
$config->cl_close=1;//修改

3. 写入配置:



$config=....//假设已经读到
file_put_contents(json_encode($config));

⑼ linux config.php在哪

从文件名来称上来分析应该属源于某个PHP框架的配置文件

例如:CI框架中,站点的配置文件位于application/config/config.php

另外,在linux中查找文件可以使用命令

find/-name"config.php"

⑽ config.php 用什么打开这个啊 怎么修改

对形如.php文件的读取,修改等操作的代码,需要的朋友可以参考下
..复制代码代码如下:
<?php
$name="admin";//kkkk
$bb='234';
$db=4561321;
$kkk="admin";
?>
函数定义:
配置文件数据值获取:functiongetconfig($file,$ini,$type="string")
配置文件数据项更新:functionupdateconfig($file,$ini,$value,$type="string")
调用方式:
复制代码代码如下:
getconfig("./2.php","bb");//
updateconfig("./2.php","kkk","admin");
复制代码代码如下:
<?php
//配置文件数据值获取。
//默认没有第三个参数时,按照字符串读取提取''中或""中的内容
//如果有第三个参数时为int时按照数字int处理。
functiongetconfig($file,$ini,$type="string")
{
if($type=="int")
{
$str=file_get_contents($file);
$config=preg_match("/".$ini."=(.*);/",$str,$res);
Return$res[1];
}
else
{
$str=file_get_contents($file);
$config=preg_match("/".$ini."="(.*)";/",$str,$res);
if($res[1]==null)
{
$config=preg_match("/".$ini."='(.*)';/",$str,$res);
}
Return$res[1];
}
}
//配置文件数据项更新
//默认没有第四个参数时,按照字符串读取提取''中或""中的内容
//如果有第四个参数时为int时按照数字int处理。
functionupdateconfig($file,$ini,$value,$type="string")
{
$str=file_get_contents($file);
$str2="";
if($type=="int")
{
$str2=preg_replace("/".$ini."=(.*);/",$ini."=".$value.";",$str);
}
else
{
$str2=preg_replace("/".$ini."=(.*);/",$ini."="".$value."";",$str);
}
file_put_contents($file,$str2);
}
//echogetconfig("./2.php","bb","string");
getconfig("./2.php","bb");//
updateconfig("./2.php","kkk","admin");
//echo"<br/>".getconfig("./2.php","name","string");
?>
复制代码代码如下:
//完善改进版
/**
*配置文件操作(查询了与修改)
*默认没有第三个参数时,按照字符串读取提取''中或""中的内容
*如果有第三个参数时为int时按照数字int处理。
*调用demo
$name="admin";//kkkk
$bb='234';
$bb=getconfig("./2.php","bb","string");
updateconfig("./2.php","name","admin");
*/
functionget_config($file,$ini,$type="string"){
if(!file_exists($file))returnfalse;
$str=file_get_contents($file);
if($type=="int"){
$config=preg_match("/".preg_quote($ini)."=(.*);/",$str,$res);
return$res[1];
}
else{
$config=preg_match("/".preg_quote($ini)."="(.*)";/",$str,$res);
if($res[1]==null){
$config=preg_match("/".preg_quote($ini)."='(.*)';/",$str,$res);
}
return$res[1];
}
}
functionupdate_config($file,$ini,$value,$type="string"){
if(!file_exists($file))returnfalse;
$str=file_get_contents($file);
$str2="";
if($type=="int"){
$str2=preg_replace("/".preg_quote($ini)."=(.*);/",$ini."=".$value.";",$str);
}
else{
$str2=preg_replace("/".preg_quote($ini)."=(.*);/",$ini."="".$value."";",$str);
}
file_put_contents($file,$str2);
}