openssl_error_string

(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)

openssl_error_string返回 openSSL 錯(cuò)誤消息

說(shuō)明

openssl_error_string(): string

openssl_error_string() 從openSSL庫(kù)返回最后一個(gè)錯(cuò)誤。錯(cuò)誤消息已被隊(duì)列化,因此這個(gè)函數(shù)可以多次調(diào)用用來(lái)收集所有的信息。最后一個(gè)錯(cuò)誤將是最近的一個(gè)。

返回值

成功,返回錯(cuò)誤信息字符串,如果沒(méi)有任何錯(cuò)誤信息則返回 false。

范例

示例 #1 openssl_error_string() example

<?php
// lets assume you just called an openssl function that failed
while ($msg openssl_error_string())
    echo 
$msg "<br />\n";
?>