PHP image_type_to_extension – 获取图片后缀
PHP image_type_to_extension - 获取图片后缀
image_type_to_extension — 根据指定的图像类型返回对应的后缀名。
语法
string image_type_to_extension ( int $imagetype [, bool $include_dot = TRUE ] )
根据给定的常量 IMAGETYPE_XXX 返回后缀名。
实例
<?php // 创建图像实例 $im = imagecreatetruecolor(100, 100); // 保存图像 png 格式 imagepng($im, './test' . image_type_to_extension(IMAGETYPE_PNG)); imagedestroy($im); ?>
执行以上文件会在当期目录下生成一个 test.png 的图片。
相关文章
- PHP 数据类型
- PHP Switch 语句
- PHP 面向对象
- PHP 多维数组
- PHP 包含文件 include 和 require 语句
- PHP array_diff_uassoc() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_intersect_ukey() 函数
- PHP array_keys() 函数
- PHP array_pad() 函数
- PHP array_push() 函数
- PHP array_replace_recursive() 函数
- PHP each() 函数
- PHP krsort() 函数
- PHP natcasesort() 函数
- PHP next() 函数
- PHP sort() 函数
- PHP 5 Array 函数
- PHP HTTP 函数
- PHP Libxml 函数