web-dev-qa-db-ja.com

PHPの例外として、文字列の代わりに配列をスローできますか?

文字列ではなく、phpの例外として配列をスローしたい。 Exceptionクラスを拡張する独自のクラスを定義する場合、これを行うことは可能ですか?

例:throw new CustomException('string', $options = array('params'));

23
john mossel

承知しました。認識し、配列プロパティを適切に使用するのは、エラー処理コード次第です。カスタム例外クラスのコンストラクターを定義して、必要なパラメーターを取得してから、コンストラクター定義内から基本クラスのコンストラクターを呼び出すようにしてください。例:

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ドキュメントを見てください:

http://php.net/manual/en/language.exceptions.extending.php

44
echo

答えが少し遅すぎると思いますが、自分の解決策も共有したいと思いました。これを探している人はおそらくもっと多いでしょう:)

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);
    }
}
11
Rolf

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を使用することもできます。

6
Sinus Mackowaty

はい、できます。 Exception class を拡張し、__ construct()メソッドを作成して必要な処理を実行する必要があります。

3
Mike