imagetypes

(PHP 3 CVS only, PHP 4 >= 4.0.2, PHP 5)

imagetypes -- 返回現用的 PHP 版本所支援的圖像類型

說明

int imagetypes ( void )

本函數以比特欄位模式返回與現用的 PHP 版本關聯的 GD 庫所支援的圖像格式。將返回以下結果,IMG_GIF | IMG_JPG | IMG_PNG | IMG_WBMP| IMG_XPM。 例如要檢查是否支援 PNG,這樣做:

例子 1. imagetypes() 例子

<?php
if (imagetypes() & IMG_PNG) {
    echo 
"PNG Support is enabled";
}
?>