yii的專案開發過程中,經常使用到驗證碼,yii框架提供了CCaptchaAction類,來提供驗證碼圖片功能,經常會碰到驗證碼圖片不顯示的問題。
主要有兩個問題導致:
1、bom問題(把檔案牽涉到bom的php程式碼去掉bom即可)。
2、 輸出影像之前,沒有加ob_clean()清空輸出緩衝區。
//加此代码块解决 if(function_exists('ob_clean')){ @ob_clean(); } imagecolordeallocate($image,$foreColor); header('Pragma: public'); header('Expires: 0'); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Content-Transfer-Encoding: binary'); header("Content-type: image/png"); imagepng($image); imagedestroy($image);
相關文章教學推薦:yii教學
以上是yii2中驗證碼圖片不顯示的詳細內容。更多資訊請關注PHP中文網其他相關文章!