PHP mysqli_real_connect() 函數(shù)
PHP mysqli_real_connect() 函數(shù)
實例
打開一個到 MySQL 服務(wù)器的新連接:
<?php
$con=mysqli_init();
if (!$con)
{
die("mysqli_init failed");
}
if (!mysqli_real_connect($con,"localhost","my_user","my_password","my_db"))
{
die("Connect Error: " . mysqli_connect_error());
}
mysqli_close($con);
?>
$con=mysqli_init();
if (!$con)
{
die("mysqli_init failed");
}
if (!mysqli_real_connect($con,"localhost","my_user","my_password","my_db"))
{
die("Connect Error: " . mysqli_connect_error());
}
mysqli_close($con);
?>
定義和用法
mysqli_real_connect() 函數(shù)打開一個到 MySQL 服務(wù)器的新連接。
mysqli_real_connect() 函數(shù)與 mysqli_connect() 函數(shù)在以下幾個方面存在差異:
- mysqli_real_connect() 要求一個由 mysqli_init() 創(chuàng)建的有效的對象。
- mysqli_real_connect() 可以與 mysqli_options() 一同使用來設(shè)置連接的不同選項。
- mysqli_real_connect() 有一個 flag 參數(shù)。
語法
mysqli_real_connect(connection,host,username,password,dbname,port,socket,flag);
參數(shù) | 描述 |
---|---|
connection | 必需。規(guī)定要使用的 MySQL 連接。 |
host | 可選。規(guī)定主機名或 IP 地址。 |
username | 可選。規(guī)定 MySQL 用戶名。 |
password | 可選。規(guī)定 MySQL 密碼。 |
dbname | 可選。規(guī)定要使用的默認數(shù)據(jù)庫。 |
port | 可選。規(guī)定嘗試連接到 MySQL 服務(wù)器的端口號。 |
socket | 可選。規(guī)定 socket 或要使用的已命名 pipe。 |
flag | 可選。規(guī)定不同的連接選項??赡艿闹担?br>
|
技術(shù)細節(jié)
返回值: | 如果成功則返回 TRUE,如果失敗則返回 FALSE。 |
---|---|
PHP 版本: | 5+ |

相關(guān)文章
- PHP 簡介
- PHP echo 和 print 語句
- PHP EOF(heredoc) 使用說明
- PHP 常量
- PHP 面向?qū)ο?/a>
- PHP $_POST 變量
- PHP Cookie
- PHP 發(fā)送電子郵件
- PHP Secure E-mails
- PHP array_fill() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP each() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP Libxml 函數(shù)
- PHP Mail 函數(shù)
- PHP 雜項 函數(shù)