返回 openSSL 錯誤訊息

openssl_error_string

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

openssl_error_string返回 openSSL 錯誤訊息

說明

openssl_error_string(): string

openssl_error_string() 從openSSL庫返回最後一個錯誤。錯誤訊息已被佇列化,因此這個函式可以多次呼叫用來收集所有的資訊。最後一個錯誤將是最近的一個。

返回值

成功,返回錯誤資訊字串,如果沒有任何錯誤資訊則返回 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";
?>

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *