mysqli_connect()中的第四个参数是什么?

时间:2016-06-17 07:41:15

标签: php mysql mysqli

什么是"分叉"在mySQL中

<?php  
$connect = mysqli_connect("db location","username","password", "forks") or die(mysql_error());
?>

2 个答案:

答案 0 :(得分:4)

其数据库名称

mysqli_connect(host,username,password,dbname,port,socket);
Parameter      Description
host           Optional. Specifies a host name or an IP address
username       Optional. Specifies the MySQL username
password       Optional. Specifies the MySQL password
dbname         Optional. Specifies the default database to be used
port           Optional. Specifies the port number to attempt to connect to the MySQL server
socket         Optional. Specifies the socket or named pipe to be used

来源:http://php.net/manual/en/function.mysqli-connect.php

答案 1 :(得分:1)

在您的示例中,forks是第四个参数,因此它只是数据库的名称。在MySQL中,forks这个词没有任何意义,并且与代码本身没有任何关联。

mysqli_connect() PHP函数的参数如下:

  1. 主机
  2. 用户名
  3. 密码
  4. 数据库名称
  5. 端口
  6. 插槽
  7. 请参阅PHP手册了解mysqli::__construct()函数,其中mysqli_connect是别名。