0
我想我不會使用Imagine libray正確管理異常。如何在CakePHP 3中處理Imagine異常
我的代碼是:
use ....
use Imagine\Exception;
....
try {
$imagine = new Imagine();
$image = $imagine->open($img_path . DS . "tmpfile." . $extension)
->resize(new Box($cwidth, $cheight))
->crop(new Point($offsetx, $offsety), new Box(500, 500));
...
} catch (Imagine\Exception\Exception $e) {
die("catch Imagine\Exception\Exception");
$file = new File($img_path . DS . "tmpfile." . $extension);
if ($file->exists()) {
$file->delete();
}
}
但試想例外,我不明白它和我的腳本將停止。
我的錯誤在哪裏?
好吧,我明白了。謝謝。 – 2ndGAB