以下文章提供了 PHP 7 mysql_connect 的概述。開發人員使用 PHP 作為伺服器端腳本語言來建立動態 Web 應用程式和程式設計。 PHP 有多個版本,例如 PHP5 和 PHP7,每個版本都有不同的功能和服務。到時候我們需要做動態程式設計的時候,就必須連接任何一個資料庫,像是MySQL——PHP 7和MySQL的連線我們可以透過編碼來實現。 PHP 從版本 5.5 開始棄用 MySQL,並在 PHP 7 中完全刪除它,儘管它是一個開放的連接。
廣告 該類別中的熱門課程 PHP 開發人員 - 專業化 | 8 門課程系列 | 3次模擬測驗開始您的免費軟體開發課程
網頁開發、程式語言、軟體測試及其他
mysql_connect() 建立與 MySQL 伺服器的關聯。對於缺少任意邊界的情況,接受隨附的預設值:伺服器 =“localhost:8080”,使用者名稱 = 宣告伺服器週期的客戶端名稱,金鑰 = void 秘密字。伺服器邊界同樣可以包含連接埠號碼。
mysql_connect() 工作開啟了不倦的 MySQL 關聯。這種能力傳回進步的關聯,或錯誤,以及失望的錯誤。您可以透過在容量名稱前面加上“@”來隱藏錯誤率。
如果您在框架(不是 Web 伺服器)中引入了 XAMPP,則必須將其命名為 localhost。當然,MySQL客戶端名稱和金鑰分別是「root」和clear(「」)。讓我們進行一項基本嘗試,嘗試將 PHP 程式碼與 MySQL 關聯起來。如果您使用的是 Windows,則「C:/xampp/htdocs/」中有一個「htdocs」信封(只要在預設區域中引入)。如果您使用的是 Linux(很可能是 Ubuntu),它位於“/pick/lampp/htdocs”(您應該在其中建立組織者之前更改為 root 客戶端。)。
現在讓我們來看看如何使用 PHP 7 MySQL 連線。
首先,根據開發人員的不同,我們需要安裝任何我們想要的伺服器,無論我們是否可以根據我們的要求安裝 Tomcat、XAMPP 或任何其他伺服器。之後,我們需要根據應用程式要求在伺服器上進行更改。另一種方式是,我們可以安裝MySQL伺服器和任何程式設計工具來進行編碼。為了更好地理解,請考慮以下語法。
asset mysql_connect ( [string server [, string specified username [, string user_password [, bool new_link [, int flags value]]]]])
如果有進展則傳回 MySQL 介面標識符,如果失敗則傳回 FALSE。
mysql_connect() 建立與 MySQL 伺服器的關聯。對於缺少任意邊界,預計使用以下預設值:伺服器=“localhost:8080”,使用者名稱=聲明伺服器週期的客戶端名稱,秘密短語=無效秘密短語。
伺服器邊界同樣可以包含連接埠號碼。例如,「主機名稱:連接埠。」
注意:每當您確定「localhost」或「localhost: port」作為伺服器時,MySQL 用戶端程式庫都會使該值無效並嘗試將其與本機附件(Windows 上的命名管道)關聯起來。若要使用 TCP/IP,請使用“127.0.0.1”而不是“localhost”。如果 MySQL 用戶端程式庫嘗試與某些不可接受的附近附件進行交互,您應該在 PHP 設計中將正確的方式設為 mysql.default_host 並保留 waiter 欄位。
PHP 3.0B4 包含對「: port」的支援。
PHP 3.0.10 中包含對「:/way/to/attachment」的支援。
您可以透過在容量名稱前面加上 @ 來消除失望時的錯誤訊息。
如果後續使用類似參數呼叫 mysql_connect(),它不會建立新連線;相反,它會傳回通常開啟的連線標識符。 mysql_connect() 中的 new_link 參數透過強制它始終開啟新連線來調整行為,即使該函數先前呼叫時具有相同的限制。標誌邊界可以混合常數 MYSQL_CLIENT_COMPRESS、MYSQL_CLIENT_IGNORE_SPACE 或 MYSQL_CLIENT_INTERACTIVE。
現在讓我們來看看不同的 PHP 7 MySQL 連線參數,如下所示。
文法:
mysql_connect( string $server_host = ini_get("get the host "), string $specified username = ini_get("get username"), string $user password = ini_get("user password"), bool $new_link = false, int $client_flags = 0 ): resource|false
說明:
使用上述語法,我們嘗試使用不同的參數連接 MySQL 和 PHP 7。
Now let’s see different examples of PHP 7 MySQL connect for better understanding.
Now let’s see an example as follows.
Code:
<?PHP $servername = "localhost"; $username = "specified username"; $password = "user password"; // Creating connection with MySQL server $conn = new mysql($servername, $specified username, $user password); // Connection checking if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } echo "Connection done successfully"; ?>
Output:
This is a straightforward example of a PHP 7 mysql connection. After executing the program, we will get a success message, as shown in the following screenshot.
Now let’s see another example as follows.
Code:
<?PHP mysqli_connect("specified localhost", "specified root", "", " "); if(mysql_connect_error()) echo "Connection Problem."; else echo "Database Connection Done."; ?>
Output:
We hope you learn more about the PHP 7 mysql_connect from this article. From the above article, we have taken in the essential idea of the PHP 7 mysql_connect and the representation and example of the PHP 7 mysql_connect. This article taught us how and when to use PHP 7 mysql_connect.
以上是PHP 7 mysql_connect 的詳細內容。更多資訊請關注PHP中文網其他相關文章!