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


PHP imagedestroy()用法及代碼示例


imagedestroy()函數是PHP中的內置函數,用於破壞圖像並釋放與該圖像關聯的任何內存。

用法:

bool imagedestroy( resource $image )

參數:該函數接受一個包含圖像名稱的單個參數$image。


返回值:成功時返回TRUE,失敗時返回FALSE。

以下示例說明了PHP中的imagedestroy()函數:

範例1:使用後破壞圖像。

<?php 
  
// Load the png image 
$im = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/20200123135210/geeksforgeeksinverted.png'); 
   
// Crop the image 
$cropped = imagecropauto($im, IMG_CROP_BLACK); 
  
// Convert it to a png file 
header('Content-type:image/png');   
imagepng($cropped); 
  
// Destroy the cropped image to deallocate the memory 
imagedestroy($cropped); 
?>

輸出:

$cropped variable is destroy by the end line
and you can't access it after that line.

範例2:檢查變量是否被破壞。

<?php 
  
// Load the png image 
$im = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/20200123135210/geeksforgeeksinverted.png'); 
  
header('Content-type:image/png'); 
  
// Destroy the image to deallocate the memory 
imagedestroy($im); 
  
// Try to access the destroyed variable 
imagepng($im); 
?>

輸出:

PHP log will give a error as the variable is destroyed. PHP Warning: imagepng():supplied resource is not a valid Image resource.

參考: https://www.php.net/manual/en/function.imagedestroy.php



相關用法


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