/ Published in: PHP
Expand |
Embed | Plain Text
/* 解説:指定した文字列が有効な時刻を含むかどうかを調べます 引数: $value チェック対象日付文字列 返り値: チェック結果 */ function checkDateFormat($value) { //match the format of the date { //check weather the date is valid of not return true; else return false; } else return false; }
You need to login to post a comment.
