= 5.2.0, PHP 7, PHP 8)image_type_to_extension — 取得圖像類型的文件后綴說明image_type_to_extension(int $imagetype, bool $include_dot ">

image_type_to_extension

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

image_type_to_extension取得圖像類型的文件后綴

說明

image_type_to_extension(int $imagetype, bool $include_dot = true): string

根據(jù)給定的常量 IMAGETYPE_XXX 返回后綴名。

參數(shù)

imagetype

IMAGETYPE_XXX 系列常量之一。

include_dot

是否在后綴名前加一個點。默認是 true。

返回值

根據(jù)指定的圖像類型返回對應的后綴名。

范例

示例 #1 image_type_to_extension() 例子

<?php
// 創(chuàng)建圖像實例
$im imagecreatetruecolor(100100);

// 保存圖像
imagepng($im'./test' image_type_to_extension(IMAGETYPE_PNG));
imagedestroy($im);
?>

注釋

注意:

此函數(shù)不需要 GD 圖象庫。