【发布时间】:2014-03-06 18:33:30
【问题描述】:
我有:
<?php
try
{
throw new Exception('Debes iniciar sesión para esto.', 1); // This is a null exception.
throw new Exception('Debes iniciar sesion para esto.', 1); // This is not a null exception.
}
catch (Exception $ex1)
{
echo 'Message: ' . $ex1->getMessage();
}
当我抛出第一个异常时,结果为空!!处理时我无法收到消息!但由于某种原因,如果我删除重音,它会正确抛出消息。
可能是什么?一个错误? (不信你自己试试)
【问题讨论】:
-
encoding 可能有问题?