openssl_error_string

(PHP 4 >= 4.0.6, PHP 5)

openssl_error_string — Return openSSL error message

Описание

string openssl_error_string ( void )

openssl_error_string() returns the last error from the openSSL library. Error messages are stacked, so this function should be called multiple times to collect all of the information.

Возвращаемые значения

Returns an error message string, or FALSE if there are no more error messages to return.

Примеры

Пример #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";
?>

Коментарии

Автор:
Note that there may be two (or more) lines for one error.

Best to clear it out and read it for each openssl call.

PS
There are no "threads" and if the other library doesn't have enough sense to read (and therefore clear) the queue (errr, dequeue) of messages before and after their openssl calls...
A) That's their problem
B) Look for a new library, because NOT doing that means they aren't writing their code properly.
2013-07-15 22:34:26
http://php5.kiev.ua/manual/ru/function.openssl-error-string.html
Автор:
You need to do something like this to clear it:

while(openssl_error_string() !== false);

Some openssl functions will add errors to the list even if they succeed.
2016-09-12 18:33:13
http://php5.kiev.ua/manual/ru/function.openssl-error-string.html

    Поддержать сайт на родительском проекте КГБ