header - php莫名其妙的執行了兩次

來源:互聯網
上載者:User

環境php5.3 nginx1.8
在產生驗證碼圖片的時候

` private function outputImg(){    if (imagetypes() & IMG_JPG) {        header('Content-type: image/jpeg');        imagejpeg($this->im);    } elseif (imagetypes() & IMG_GIF) {        header('Content-type: image/gif');        imagegif($this->im);    } elseif (imagetype() & IMG_PNG) {        header('Content-type:image/png');        imagepng($this->im);    } else {        exit("Don't support image type!");    }}`

程式莫名其妙的執行了兩次,注釋掉header('Content-type: image/jpeg')後正常,頁面顯示亂碼。

回複內容:

環境php5.3 nginx1.8
在產生驗證碼圖片的時候

` private function outputImg(){    if (imagetypes() & IMG_JPG) {        header('Content-type: image/jpeg');        imagejpeg($this->im);    } elseif (imagetypes() & IMG_GIF) {        header('Content-type: image/gif');        imagegif($this->im);    } elseif (imagetype() & IMG_PNG) {        header('Content-type:image/png');        imagepng($this->im);    } else {        exit("Don't support image type!");    }}`

程式莫名其妙的執行了兩次,注釋掉header('Content-type: image/jpeg')後正常,頁面顯示亂碼。

你把imagetypes()這個放到if裡面肯定會重複執行的啊

問題原因:在輸出映像的時候,因為有header('Content-type: image/jpeg')這個函數,頁面會重寫頭資訊,在瀏覽器端瀏覽的時候,會先執行一個html的頭,然後在執行image的頭,所以頁面就執行了兩次
解決辦法:要產生驗證碼,然而頁面缺執行了兩次,而session寫入了兩次,但圖片缺執行一次,是第一次的,那麼就給圖片字串加一個有效期間,產生的時候檢測上一次產生時間,如果間隔一秒,讀取上一次的字串產生驗證碼即可

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.