codecamp

PHP mysqli_ssl_set() 函数

PHP mysqli_ssl_set() 函数

PHP MySQLi 参考手册 PHP MySQLi 参考手册

实例

创建 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());
}

// Some queries...

mysqli_close($con);
?>

定义和用法

mysqli_ssl_set() 函数用于创建 SSL 安全连接。然而,该函数只有在启用 OpenSSL 支持时才有效。

注释:该函数必须在 mysqli_real_connect() 之前调用。

注释:在 PHP 5.3.3 之前的版本,MySQL Native Driver 不支持 SSL。自 PHP 5.3+ 起,在微软 Windows 上默认启用 MySQL Native Driver。


语法

mysqli_ssl_set(connection,key,cert,ca,capath,cipher);

参数 描述
connection 必需。规定要使用的 MySQL 连接。
key 必需。规定密钥文件的路径名。
cert 必需。规定认证文件的路径名。
ca 必需。规定认证授权文件的路径名。
capath 必需。规定包含 PEM 格式的可信 SSL CA 认证的目录的路径名。
cipher 必需。规定用于 SSL 加密的可用密码列表。

技术细节

返回值: 总是返回 TRUE。如果 SSL 安装不正确,当您尝试连接的时候,mysqli_real_connect() 将返回一个错误。
PHP 版本: 5+


PHP MySQLi 参考手册 PHP MySQLi 参考手册
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

PHP 相关教程

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }