使えそうなPHPのユーザー定義関数いろいろ今後使いそうな、PHPのユーザー定義関数をメモ。NULL値と空文字の判定NULLと空文字の場合のみtrueを返す関数。// 1:文字列function isNullEmpty($str) { if ($str) return false; $result = true; if ($...morePHPDateNULL関数マルチバイト文字座標January 16th, 2014