這篇文章主要介紹了php透過取得頭資訊判斷圖片類型的方法,涉及php針對圖片檔案的相關操作技巧,需要的朋友可以參考下
本文實例講述了php透過獲取頭資訊判斷圖片類型的方法。分享給大家供大家參考。具體實作方法如下:
$filename = '617.gif' ; function pictype ( $file ) { /*$png_header = "/x89/x50/x4e/x47/x0d/x0a/x1a/x0a"; $jpg_header = "/xff/xd8";*/ $header = file_get_contents ( $file , 0 , NULL , 0 , 5 ); //echo bin2hex($header); if ( $header { 0 }. $header { 1 }== "/x89/x50" ) { return 'png' ; } else if( $header { 0 }. $header { 1 } == "/xff/xd8" ) { return 'jpeg' ; } else if( $header { 0 }. $header { 1 }. $header { 2 } == "/x47/x49/x46" ) { if( $header { 4 } == "/x37" ) return 'gif87' ; else if( $header { 4 } == "/x39" ) return 'gif89' ; } } echo pictype ( $filename );
以上是php 透過取得頭部資訊判斷圖片類型的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!