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。例如要检查是否支持 PNG,这样做:
例子 1. imagetypes() 例子
<?php if (imagetypes() & IMG_PNG) { echo "PNG Support is enabled"; } ?>
|
|