给定以下代码:
imagecopyresized($new_image, $product, $dst_x, $dst_y, $src_x, $src_y, $dst_width, $dst_height, $src_width, $src_height);
imagedestroy($product);
$product = $new_image;
imagedestroy($new_image);
最后一行破坏$product
,不仅仅是$new_image
,好像$product
是某种指向$new_image
. 为什么会发生这种情况?如何在$product中有效地创建 *$new_image* 的副本,然后销毁$new_image
资源?