(PHP 5, PHP 7)
Exception::getMessage — ��ȡ�쳣��Ϣ����
�����쳣��Ϣ���ݡ�
�˺���û�в�����
�����ַ������͵��쳣��Ϣ���ݡ�
Example #1 Exception::getMessage()ʾ��
<?php
try {
throw new Exception("Some error message");
} catch(Exception $e) {
echo $e->getMessage();
}
?>
�������̵���������ڣ�
Some error message