PHP 4 try catch alternatif?

0 Cevap php

Birisi bana PHP 4 için bu kodu çevrilmesine yardımcı olabilir mi?

try
{
  $picture = PDF_open_image_file($PDF, "jpeg", $imgFile, "", 0); // This is the original statement, this works on PHP4
}
catch(Exception $ex)
{
  $msg = "Error opening $imgFile for Product $row['Identifier']";
  throw new Exception($msg);
}

Orada $ row ['tanıtıcı'] almak gerekir ölümcül bir hatadır yani Temelde ben hataya neden olan ne ürün biliyorum.

Şimdiden teşekkürler.

EDIT: Ben PHP_open_image_file ne olduğunu bilmiyorum, ama bazen aşağıdaki gibi bir hata alırsınız ve ben hataya neden olan ürün tanımlayıcı almak gerekiyor.

Fatal error: PDFlib error [1016] PDF_open_image_file: Couldn't open JPEG file 'picture/b01_le1x.jpg' for reading (file not found) in /var/www/html/catalogue/pdf_make.php on line 618

0 Cevap