gpt4 book ai didi

php - 是否有必要对数据库信息(php)使用常量?

转载 作者:行者123 更新时间:2023-11-28 23:42:57 25 4
gpt4 key购买 nike

我想知道以下哪种方式是更好的编程方式以及为什么:
1-只需使用一个文件进行连接:

connection.php:

<?php
$connection=mysql_connect("localhost","root","");
if(!$connection)
{
die("data base connection faild:".mysql_error());
}
$db=mysql_select_db("widget_corp");
if(!$db)
{
die("not db selection".mysql_error());
}
?>

2- 使用一个文件进行连接,另一个文件存储数据库访问信息:

connection.php:

<?php
require_once 'constants.php';
$connection=mysql_connect(DB_SERVER,DB_USER,DB_PASS);
if(!$connection)
{
die("data base connection faild:".mysql_error());
}
$db=mysql_select_db(DB_NAME);
if(!$db)
{
die("not db selection".mysql_error());
}
?>

constans.php

<?php
define('DB_SERVER','localhost');
define('DB_USER', 'root');
define('DB_PASS','');
define('DB_NAME','widget_corp');
?>

最佳答案

我更喜欢用这个方法

return array(
'host' => 'localhost',
'username' => 'root',
'password' => '',
);

然后

$config = include 'config.php';
$connection=mysql_connect($config['host'],['username'],$config['password']);

关于php - 是否有必要对数据库信息(php)使用常量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34047896/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com