(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)
openssl_error_string — 返回 openSSL 錯誤消息
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";
?>