因為tp,裡面用到了拋出功能,不過關閉debug,那些拋錯功能都被屏蔽了。
一旦拋錯,直接跳到頁面錯誤,不顯示拋錯內容。
像微信支付和其他的類別庫,我在引用後,因為程式有些異常得拋出,並看到內容,如何在debug關閉,還能看到拋出內容。
<code>throw new SDKRuntimeException("统一支付接口中,缺少必填参数openid!trade_type为JSAPI时,openid为必填参数!" . "<br>"); class SDKRuntimeException extends Exception { public function errorMessage() { return $this->getMessage(); } } </code>