當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP image_type_to_extension()用法及代碼示例


image_type_to_extension()函數是PHP中的內置函數,用於獲取圖像類型的文件擴展名。可以在任何PHP版本silimar或高於5.2.0的版本中找到此函數。

用法:

string image_type_to_extension( int $imagetype, bool $include_dot )

參數:該函數接受上述和以下描述的兩個參數:


  • $imagetype:它以整數值作為IMAGETYPE_XXX常數之一的第一個參數。例如:IMAGETYPE_GIF,IMAGETYPE_JPEG等。
  • $include_dot:第二個參數采用布爾值來決定是否在擴展名前加點。函數中的默認值設置為TRUE。

返回值:此函數返回與給定圖像類型對應的擴展名關聯的字符串值。

以下示例程序旨在說明PHP中的image_type_to_extension()函數:

程序1:

<?php  
  
// Extension with dot 
echo image_type_to_extension(IMAGETYPE_PNG, TRUE) . "\n"; 
  
// Extension without dot 
echo image_type_to_extension(IMAGETYPE_PNG, FALSE); 
  
?>

輸出:

.png
png

程序2:

<?php 
  
// Create image instance 
$image = imagecreatetruecolor(100, 100); 
   
// Creates an image with .png extension 
imagepng($image, './test' .  
        image_type_to_extension(IMAGETYPE_PNG)); 
  
// Free any memory associated with image 
imagedestroy($image); 
  
?>

輸出:

Creates an image with name test.png

參考: https://www.php.net/manual/en/function.image-type-to-extension.php



相關用法


注:本文由純淨天空篩選整理自ShrabanaBiswas大神的英文原創作品 PHP | image_type_to_extension() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。