Değerler, ben çalışmak preg_match istiyorum bu formatta 123-123-123-12345 olacaktır. Bu regex ile yanlış bir şey görebiliyor musun?
foreach($elem as $key=>$value) {
// Have tried this With and without the + before the $ as well
if(preg_match("/^[0-9]{3}\-[0-9]{3}\-[0-9]{3}\-[0-9]{5}+$/", $value)) {
echo "Yeah match Elm: ".$value."<br />";
} else {
echo "Boo Hoo Elm: '".$value."'<br />";
}
}
Ayrıca denedim
/^\d{3}\-\d{3}\-\d{3}\-\d{5}+$/
//With and without the + before the $
Hepsi Boo Hoo ile başarısız; (
EDIT:
var_dump($elem)
array(3) { [0]=> string(1) "c" [1]=> string(0) "" [2]=> string(36) "123-123-123-12345" }