(PHP 4, PHP 5, PHP 7, PHP 8)
imagedestroy — 销毁图像
注意:
此函数无效。在 PHP 8.0.0 之前,用于关闭资源。
在 PHP 8.0.0 之前,imagedestroy() 释放与图像 image
关联的所有内存。
示例 #1 PHP 8.0.0 前使用 imagedestroy()
<?php
// create a 100 x 100 image
$im = imagecreatetruecolor(100, 100);
// alter or save the image
// frees image from memory
imagedestroy($im);
?>