當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP imagetypes()用法及代碼示例


imagetypes()函數是PHP中的內置函數,用於返回PHP內置安裝庫支持的圖像類型。

用法:

int imagetypes( void )

參數:該函數不接受任何參數。


返回值:此函數返回bit-field,對應於鏈接到PHP的GD版本所支持的圖像格式。此函數返回以下位:IMG_BMP,IMG_GIF,IMG_JPG,IMG_PNG,IMG_WBMP,IMG_XPM,IMG_WEBP。

以下示例程序旨在說明PHP中的imagetypes()函數:

程序1:

<?php 
if (imagetypes() & IMG_PNG) { 
    echo "PNG Support is enabled"; 
} 
else { 
    echo "Not supported image type."; 
} 
?>

輸出:

PNG Support is enabled

程序2:

<?php 
if (imagetypes() & IMG_JPEG) { 
    echo "JPEG Support is enabled"; 
} 
else { 
    echo "Not supported image type."; 
} 
?>

輸出:

JPEG Support is enabled

相關文章:

參考: http://php.net/manual/en/function.imagetypes.php



相關用法


注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | imagetypes() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。