透過檢視 Exception 類別的原始碼可以知道, $message 屬性使用 protect 修飾, 且沒有提供 setMessage 方法。
對於 Exception 實例該怎麼修改 message 呢?答案是: 反射!
$exception = new \Exception('haha'); $message = " - use reflection appended message"; $reflectionObject = new \ReflectionObject($exception); $reflectionObjectProp = $reflectionObject->getProperty('message'); $reflectionObjectProp->setAccessible(true); $reflectionObjectProp->setValue($exception, $exception->getMessage() . $message); print_r($exception->getMessage()); haha - use reflection appended message
透過以上程式碼,能把 $exception 中的 $message 修改掉!反射無敵。 。 。
更多PHP相關知識,請造訪PHP教學!
以上是php透過反射修改Exception實例的message屬性的詳細內容。更多資訊請關注PHP中文網其他相關文章!