gpt4 book ai didi

不同服务器上的php/mysql连接

转载 作者:行者123 更新时间:2023-11-29 06:21:01 25 4
gpt4 key购买 nike

我有一个本地服务器和一个远程服务器,我正在其上开发一个项目

//local
$servername = "localhost";
$username = "bob";
$password = "fred";
$dbname = "jane";

//remote
$servername = "arthur";
$username = "Milly";
$password = "Horace";
$dbname = "Erastus";

目前我正在注释掉//local 或//remote 位,具体取决于我连接的方式。当然,我经常错误地覆盖连接文件,这很痛苦。

是否有某种方法可以检测我所在的服务器,然后自动连接。我曾尝试使用谷歌搜索但无法找到任何结果,这可能是因为我想不出合适的搜索词。

谢谢

最佳答案

你可以试试这段代码:-

<?php

if ($_SERVER['SERVER_NAME'] == "localhost") {
$servername = "localhost";
$username = "bob";
$password = "fred";
$dbname = "jane";
}
elseif ($_SERVER['SERVER_NAME'] == "google.com") {
$servername = "arthur";
$username = "Milly";
$password = "Horace";
$dbname = "Erastus";
}
else {
echo "No configuration found!";
exit;
}

关于不同服务器上的php/mysql连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33277182/

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