勉強したことのメモ

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

  関連記事

PHPのsetcookieで「Cannot modify」エラーの対応方法

PHPでsetcookieを使うと「Warning: Cannot modify ...

PHP8系で「Warning: Attempt to read property "xxxxxx" 」エラーの対応方法

PHP8系&WordPress6.4.3で「Warning: Attem ...

PHPで引数の先頭に&(アンパサンド)をつける参照渡し(リファレンス渡し)について

他社が作成されたPHPのソースコードを拝見していると関数の引数の頭に&( ...

Codeigniter3で外部ファイル(CSS / JS)の読み込みと共通パーツ化する方法

CodeigniterでCSSやJSファイル等の外部ファイル読み込みたかった。ま ...

PHPで配列じゃないものに対してソート

PHP Warning:  sort() expects parameter 1 ...