什么是"分叉"在mySQL中
<?php
$connect = mysqli_connect("db location","username","password", "forks") or die(mysql_error());
?>
答案 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
答案 1 :(得分:1)
在您的示例中,forks
是第四个参数,因此它只是数据库的名称。在MySQL中,forks
这个词没有任何意义,并且与代码本身没有任何关联。
mysqli_connect()
PHP函数的参数如下:
请参阅PHP手册了解mysqli::__construct()函数,其中mysqli_connect是别名。