Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在、日付が の形式であるかどうかを調べようとしていますYYYY-DD-MM。
YYYY-DD-MM
PHPでは、私はこれを持っています:
if (preg_match('(\d{4})(-)(\d{2})(-)(\d{2})$', $newDateOfBirth))
ただし、次のエラーが発生し続けます。
警告: preg_match(): 105 行目の C:\webserver\webroot\index.php の不明な修飾子 '('
区切り文字がありません:
if (preg_match('~(\d{4})(-)(\d{2})(-)(\d{2})$~', $newDateOfBirth))