PHP 7 mysql_connect 

WBOY
发布: 2024-08-29 13:10:48
原创
430 人浏览过

以下文章提供了 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
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!