imagetypes
(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)
imagetypes — 返回目前 PHP 版本所支援的影象型別
說明
imagetypes(): int
本函式以位元欄位方式返回與目前 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";
}
?>