Good afternoon guys from stackoverflow. Is there a way to do this? I've been trying, using this way:
for($i = 0; $i < count($array); $i++){
if(preg_match( "\d{1,2}/\d{1,2}/\d{4}$" , $array[$i] )){
echo 'true';
}else{
echo 'false';
}
}
It's been bugging:
Delimiter must not be alphanumeric or backslash in C: \ wamp \ www \ ecoprintQ \ ecoLicenseLayout \ json \ data-partners-r epots.php on line 14
Does anyone know how to do this?