PHP mysqli_ssl_set() 函數(shù)
PHP mysqli_ssl_set() 函數(shù)
實例
創(chuàng)建 SSL 連接:
<?php
$con=mysqli_init();
if (!$con)
{
die("mysqli_init failed");
}
mysqli_ssl_set($con,"key.pem","cert.pem","cacert.pem",NULL,NULL);
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");
}
mysqli_ssl_set($con,"key.pem","cert.pem","cacert.pem",NULL,NULL);
if (!mysqli_real_connect($con,"localhost","my_user","my_password","my_db"))
{
die("Connect Error: " . mysqli_connect_error());
}
// 一些查詢...
mysqli_close($con);
?>
定義和用法
mysqli_ssl_set() 函數(shù)用于創(chuàng)建 SSL 安全連接。然而,該函數(shù)只有在啟用 OpenSSL 支持時才有效。
注釋:該函數(shù)必須在 mysqli_real_connect() 之前調(diào)用。
注釋:在 PHP 5.3.3 之前的版本,MySQL Native Driver 不支持 SSL。自 PHP 5.3+ 起,在微軟 Windows 上默認(rèn)啟用 MySQL Native Driver。
語法
mysqli_ssl_set(connection,key,cert,ca,capath,cipher);
參數(shù) | 描述 |
---|---|
connection | 必需。規(guī)定要使用的 MySQL 連接。 |
key | 必需。規(guī)定密鑰文件的路徑名。 |
cert | 必需。規(guī)定認(rèn)證文件的路徑名。 |
ca | 必需。規(guī)定認(rèn)證授權(quán)文件的路徑名。 |
capath | 必需。規(guī)定包含 PEM 格式的可信 SSL CA 認(rèn)證的目錄的路徑名。 |
cipher | 必需。規(guī)定用于 SSL 加密的可用密碼列表。 |
技術(shù)細(xì)節(jié)
返回值: | 總是返回 TRUE。如果 SSL 安裝不正確,當(dāng)您嘗試連接的時候,mysqli_real_connect() 將返回一個錯誤。 |
---|---|
PHP 版本: | 5+ |

相關(guān)文章
- PHP echo 和 print 語句
- PHP 數(shù)據(jù)類型
- PHP 面向?qū)ο?/a>
- PHP $_GET 變量
- PHP 高級過濾器
- PHP array_column() 函數(shù)
- PHP array_diff_key() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP end() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP uasort() 函數(shù)
- PHP 雜項 函數(shù)
- PHP 5 MySQLi 函數(shù)