PHP image_type_to_extension – 獲取圖片后綴
PHP image_type_to_extension - 獲取圖片后綴
image_type_to_extension — 根據(jù)指定的圖像類型返回對應的后綴名。
語法
string image_type_to_extension ( int $imagetype [, bool $include_dot = TRUE ] )
根據(jù)給定的常量 IMAGETYPE_XXX 返回后綴名。
實例
<?php // 創(chuàng)建圖像實例 $im = imagecreatetruecolor(100, 100); // 保存圖像 png 格式 imagepng($im, './test' . image_type_to_extension(IMAGETYPE_PNG)); imagedestroy($im); ?>
執(zhí)行以上文件會在當期目錄下生成一個 test.png 的圖片。
相關文章
- PHP 數(shù)據(jù)類型
- PHP Switch 語句
- PHP 面向?qū)ο?/a>
- PHP 多維數(shù)組
- PHP 包含文件 include 和 require 語句
- PHP array_diff_uassoc() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP each() 函數(shù)
- PHP krsort() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP next() 函數(shù)
- PHP sort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP HTTP 函數(shù)
- PHP Libxml 函數(shù)