当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP mysqli_ssl_set()用法及代码示例



定义和用法

这个mysqli_ssl_set()函数使用 SSL 与 MySQL 服务器建立安全连接。

用法

mysqli_ssl_set($con, $key, $cert, $ca, $capath, $cipher);

参数

Sr.No 参数及说明
1

con(Mandatory)

这是一个表示与 MySQL 服务器的连接的对象。

2

key(Mandatory)

这是一个字符串变量,表示 key 文件的路径名称。

3

cert(Mandatory)

这是一个字符串变量,表示证书文件的名称。

4

ca(Mandatory)

这是一个字符串变量,表示证书颁发机构文件的路径名称。

5

capath(Mandatory)

这是一个字符串变量,表示包含 PEM 格式的 SSL CA 证书的目录的路径名称。

6

cipher(Mandatory)

允许加密的密码列表。

返回值

此函数返回布尔值,成功时为真,失败时为假。

PHP版本

这个函数最初是在 PHP 版本 5 中引入的,适用于所有后续版本。

示例

以下示例演示了 mysqli_ssl_set() 函数的用法(程序风格) -

<?php
   //Creating a connection
   $con = new mysqli("localhost", "root","password","test");

   //Securing the connection
   $con->ssl_set("key.pem", "cert.pem", "cacert.pem", NULL, NULL);

   //Creating the connection
   $con = $con->real_connect("localhost","root","password","test");
   if($con){
      print("Connection Established Successfully");
   }else{
      print("Connection Failed ". mysqli_connect_error());
   }
?>

这将产生以下结果 -

Connection Established Successfully

示例

在面向对象风格中,这个函数的语法是 $con-> ssl_set();以下是面向对象样式 $minus 中此函数的示例;

<?php
   //Creating a connection
   $con = new mysqli("localhost", "root","password","test");

   //Securing the connection
   $con->ssl_set("key.pem", "cert.pem", "cacert.pem", NULL, NULL);

   //Creating the connection
   $con = $con->real_connect("localhost","root","password","test");
   if($con){
      print("Connection Established Successfully");
   }else{
      print("Connection Failed ". mysqli_connect_error());
   }
?>

这将产生以下结果 -

Connection Established Successfully

相关用法


注:本文由纯净天空筛选整理自 PHP mysqli_ssl_set() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。