您好,登錄后才能下訂單哦!
這篇文章主要介紹php驗證碼圖片不顯示圖片的解決方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
php驗證碼圖片不顯示圖片的解決辦法:首先檢查php是否安裝gd擴展;然后在php目錄下找到php.ini文件;最后將文件編碼方式改為utf-8無DOM格式,并在header前清除緩存即可。
PHP圖片驗證碼無法顯示的解決方案
問題:使用php實現圖片驗證碼,頁面不顯示
<form action="signin.php" method="post" class="col-xs-12 col-sm-4" id="post-form"> <h3>登錄</h3> <div class="form-group"> <label for="username">用戶名</label> <input type="text" class="form-control" id="username" name="username"> </div> <div class="form-group"> <label for="password">密碼</label> <input type="password" class="form-control" id="password" name="password"> </div> <div class="form-group row"> <div class="col-xs-5"> <label class="sr-only">驗證碼:</label> <input type="text" class="form-control" id="authcode" name="authcode" placeholder="驗證碼"> </div> <div class="col-xs-7"> <img class="authcod_img" src="authcode.php"onclick="this.src='authcode.php?t='+Math.random()" name="authcode"> </div> </div> <button type="button" class="btn btn-default">提交</button> </form> <?php session_start(); header('Content-Type: image/png'); $img = imagecreatetruecolor(150, 40); $bgcolor = imagecolorallocate($img, rand(0,100),rand(0,100),rand(0,100)); imagefill($img, 0,0,$bgcolor);
解決方案:
windows環境下,檢查php是否安裝gd擴展,且為開啟狀態
php目錄下找到php.ini文件,查找如下語句
若語句前有分號,去掉分號
將文件編碼方式改為utf-8無DOM格式
在header前清除緩存
ob_clean(); header('Content-Type: image/png');
輸出前不能出現echo,print_r,var_dump等打印,注釋或刪除
以上是php驗證碼圖片不顯示圖片的解決方法的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。