image_type_to_extension

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

image_type_to_extensionGet file extension for image type

Опис

image_type_to_extension(int $image_type, bool $include_dot = true): string|false

Returns the extension for the given IMAGETYPE_* constant.

Параметри

image_type

One of the IMAGETYPE_* constant.

include_dot

Whether to prepend a dot to the extension or not. Default to true.

Значення, що повертаються

A string with the extension corresponding to the given image type, або false в разі помилки.

Приклади

Приклад #1 image_type_to_extension() example

<?php
// Create image instance
$im = imagecreatetruecolor(100, 100);

// Save image
imagepng($im, './test' . image_type_to_extension(IMAGETYPE_PNG));
?>

Примітки

Зауваження:

Ця функція не потребує бібліотеки зображень GD.