PHP | imagedestroy()函数
imagedestroy()函数是PHP中的一个内置函数,用于销毁图像并释放与图像相关的所有内存。
句法:
bool imagedestroy( resource $image )
参数:此函数接受一个包含图像名称的参数$ image。
返回值:此函数在成功时返回 TRUE,在失败时返回 FALSE。
下面的例子说明了PHP中的imagedestroy()函数:
示例 1:使用后销毁图像。
输出:
$cropped variable is destroy by the end line
and you can't access it after that line.
示例 2:检查变量是否被销毁。
输出:
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/函数.imagedestroy。 PHP