3
我正在用CHttpException(404,$ message)行處理404s,$ message變量是一個HTML字符串來實現一些樣式。但CHttpException()編碼我的$消息,將HTML呈現爲無用的轉義字符串。有沒有辦法繞過CHttpException的字符串編碼,以便輸出HTML?任何方式傳遞CHttpException HTML消息字符串?
/**
* From PostsController.php
*/
// ...
public function actionCategory($id)
{
$categoryModel = Categories::model()->findByAttributes(array('idCategory'=>$id));
if($categoryModel===null){
$message = "<div class=\"alert alert-danger\">Page Not Found</div>";
throw new CHttpException(404, $message);
return;
}
// ...