Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
^\d{4}-\d{2}-\d{2}$
или
^\d{4}-\d{1,2}-\d{1,2}$ - если можно указать месяц и число одной цифрой
(Например 2, а не 02, т.е. 1970-2-18 а не 1970-02-18)
<?
$str = "2010-08-14";
$reg = '/^([0-9]{4})-([0-9]{2})-([0-9]{2})$/';
if(preg_match($reg,$str,$match)){
print_r($match);
}
?>
Array
(
[0] => 2010-08-14
[1] => 2010
[2] => 08
[3] => 14
)