openssl_error_string

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

openssl_error_string���� openSSL ������Ϣ

˵��

openssl_error_string ( void ) : string

openssl_error_string() ��openSSL�ⷵ�����һ�����󡣴�����Ϣ�ѱ����л����������������Զ�ε��������ռ����е���Ϣ�����һ�������������һ����

����ֵ

�ɹ������ش�����Ϣ�ַ��������û���κδ�����Ϣ�򷵻� FALSE��

����

Example #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";
?>