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
相关用法
- PHP Ds\Set xor()用法及代码示例
- p5.js second()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- p5.js day()用法及代码示例
- p5.js pow()用法及代码示例
- PHP each()用法及代码示例
- PHP next()用法及代码示例
- CSS url()用法及代码示例
- CSS var()用法及代码示例
- PHP pow( )用法及代码示例
- p5.js hue()用法及代码示例
- PHP Ds\Map get()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | imagedestroy() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。