勉強したことのメモ

Webエンジニア / プログラマが勉強したことのメモ。

PHPでtry~catch文

   2014/07/02  PHP

PHPでもあるってのを知らなかったのでメモ。

■参考サイト
http://www.php-ref.com/basic/06_try_catch.html

<?
try {
//例外処理
} catch (Exception $e) {
echo $e->getMessage();
}
?>

 - PHP

  関連記事

TCPDF「Could not include font definition」エラーの対処方法
TCPDF「Could not include font definition」エラーの対処方法

TCPDFでフォントを「arialunicid0」に指定したところ「TCPDF ...

PHPMailerを使ってメールをSMTP送信する方法(Composer無し)
PHPMailerを使ってメールをSMTP送信する方法(Composer無し)

PHPでメールをSMTP送信したかった。また、レンタルサーバだったのでCompo ...

PHPでCannot re-assign auto……のエラー
PHPでCannot re-assign auto……のエラー

PHPバージョンアップに伴い「Fatal error: Cannot re-as ...

PHPで「Warning: date(): It is not safe to…」エラーの対応方法
PHPで「Warning: date(): It is not safe to…」エラーの対応方法

PHPでdate関数を使った際に「Warning: date(): It is ...

PHP8系で「Uncaught TypeError: Unsupported operand types」エラー対応方法
PHP8系で「Uncaught TypeError: Unsupported operand types」エラー対応方法

PHP8系で「Fatal error: Uncaught TypeError: ...