php生成配置檔案config.php 生成陣列配置檔案

TANKING發表於2021-04-25

在很多專案中,配置檔案是不可缺少的,一般配置檔案會用變數或者陣列進行設定,例如資料庫、或者一些公共引數。

建立

<?php

// 配置檔案陣列
$config = array(
    'DB_URL' => 'localhost',
    'DB_USER' => 'root',
    'DB_PWD' => 'root',
    'DB_NAME' => 'test_db'
);

// 程式碼格式
$str = '<?php'.PHP_EOL.'/**'.PHP_EOL.'* 配置檔案'.PHP_EOL.'* TANKING'.PHP_EOL.'* '.date('Y-m-d').''.PHP_EOL.'*/'.PHP_EOL.'$db_config = '.var_export($config,true).';'.PHP_EOL.'?>';

// 建立檔案
$file = fopen("config.php","w");
echo fwrite($file,$str);
fclose($file);

?>

配置檔案

<?php
/**
* 配置檔案
* TANKING
* 2021-04-25
*/
$db_config = array (
  'DB_URL' => 'localhost',
  'DB_USER' => 'root',
  'DB_PWD' => 'root',
  'DB_NAME' => 'test_db',
);
?>

如何讀取?

<?php

// 引入資料庫配置
include './config.php';

// 建立連線
$conn = mysqli_connect($db_config['DB_URL'], $db_config['DB_USER'], $db_config['DB_PWD']);
 
// 檢測連線
if (!$conn) {
    die("Connection failed: " . mysqli_connect_error());
}
echo "連線成功";

?>

作者

Author:TANKING
DateL2021-04-25
WeChat:sansure2016
Web:http://www.likeyuns.com

相關文章