我想在php中将数组作为异常而不是字符串。如果您定义扩展Exception类的自己的类,是否可以这样做?
例如throw new CustomException('string', $options = array('params'));
答案 0 :(得分:37)
不确定。它将由你的错误处理代码来识别,并适当地使用数组属性。您可以定义自定义异常类的构造函数以获取所需的任何参数,然后确保从构造函数定义中调用基类的构造函数,例如:
class CustomException extends \Exception
{
private $_options;
public function __construct($message,
$code = 0,
Exception $previous = null,
$options = array('params'))
{
parent::__construct($message, $code, $previous);
$this->_options = $options;
}
public function GetOptions() { return $this->_options; }
}
然后,在您的通话代码中......
try
{
// some code that throws new CustomException($msg, $code, $previousException, $optionsArray)
}
catch (CustomException $ex)
{
$options = $ex->GetOptions();
// do something with $options[]...
}
查看用于扩展异常类的php文档:
答案 1 :(得分:8)
我觉得我的答案有点太晚了,但我也希望分享我的解决方案。可能有更多人在寻找这个:)
class JsonEncodedException extends \Exception
{
/**
* Json encodes the message and calls the parent constructor.
*
* @param null $message
* @param int $code
* @param Exception|null $previous
*/
public function __construct($message = null, $code = 0, Exception $previous = null)
{
parent::__construct(json_encode($message), $code, $previous);
}
/**
* Returns the json decoded message.
*
* @param bool $assoc
*
* @return mixed
*/
public function getDecodedMessage($assoc = false)
{
return json_decode($this->getMessage(), $assoc);
}
}
答案 2 :(得分:6)
如果您不想扩展Exception,可以将数组编码为字符串:
try {
throw new Exception(serialize(['msg'=>"Booped up with %d.",'num'=>123]));
} catch (Exception $e) {
$data = unserialize($e->getMessage());
if (is_array($data))
printf($data['msg'],$data['num']);
else
print($e->getMessage());
}
如果您愿意,也可以使用json_encode
/ json_decode
。
答案 3 :(得分:2)
是的,你可以。您需要扩展Exception class并创建一个__construct()方法来执行您想要的操作。