PHP 7 mysql_connect 

WBOY
發布: 2024-08-29 13:10:48
原創
463 人瀏覽過

以下文章提供了 PHP 7 mysql_connect 的概述。開發人員使用 PHP 作為伺服器端腳本語言來建立動態 Web 應用程式和程式設計。 PHP 有多個版本,例如 PHP5 和 PHP7,每個版本都有不同的功能和服務。到時候我們需要做動態程式設計的時候,就必須連接任何一個資料庫,像是MySQL——PHP 7和MySQL的連線我們可以透過編碼來實現。 PHP 從版本 5.5 開始棄用 MySQL,並在 PHP 7 中完全刪除它,儘管它是一個開放的連接。

廣告 該類別中的熱門課程 PHP 開發人員 - 專業化 | 8 門課程系列 | 3次模擬測驗

開始您的免費軟體開發課程

網頁開發、程式語言、軟體測試及其他

什麼是 PHP 7 mysql_connect?

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_connect?

現在讓我們來看看如何使用 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_connect 參數

現在讓我們來看看不同的 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。

  • server_host: The MySQL server. It can likewise incorporate a port number. For example, “hostname: port” On the off chance that the PHP order mysql.default_host is indistinct (default), the default esteem is ‘localhost:3306’. However, SQL experimental mode overlooks this boundary and always utilizes the value ‘localhost:3306’.
  • specified username: The username, default esteem, characterized by mysql.default_user, disregards this boundary in SQL experimental mode, utilizing the client’s name that possesses the server cycle.
  • user password: The user password. mysql.default_password defines the default value. In SQL-protected mode, this setting disregards and uses an empty password.
  • new_link: If you make a subsequent call to mysql_connect() with similar arguments, it doesn’t create a new connection; instead, it returns the connection identifier of the already opened connection. The new_link parameter modifies this behavior and ensures that mysql_connect() always opens a new connection, regardless of whether a previous call used similar arguments. In SQL experimental mode, the system overlooks this boundary.
  • client_flags: The client_flags boundary can be a mix of the accompanying constants: 128 (empower LOAD DATA LOCAL dealing with), MYSQL_CLIENT_SSL, MYSQL_CLIENT_COMPRESS, MYSQL_CLIENT_IGNORE_SPACE, or MYSQL_CLIENT_INTERACTIVE. Peruse the part about MySQL client constants for additional data. In SQL experimental mode, this boundary is disregarded.

Examples of PHP 7 mysql_connect

Now let’s see different examples of PHP 7 MySQL connect for better understanding.

Example #1

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:

PHP 7 mysql_connect 

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.

Example #2

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:

PHP 7 mysql_connect 

Conclusion

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中文網其他相關文章!

相關標籤:
php
來源:php
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板