dsgffz2579 2016-06-17 07:41
浏览 448
已采纳

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

What is "forks" in mySQL

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

2条回答 默认 最新

  • doulan4371 2016-06-17 07:42
    关注

    Its database name

    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
    

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

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?