⑴ 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);
}