Preg match for all phone numbers starting with 07045

172 Views Asked by At

I'm trying to add some code that prevents a form entry if the phone number starts with 07405. I've tried the following with no such luck, any ideas?

HTML field:

        <input type="tel" name="required[phone]" placeholder="Telephone Number" data-required="strict">

PHP:

  case 'phone';

           $phone = (sanitize_text_field($fields['phone']));
          if (preg_match('07045', $phone))
          {

            $fields['valid_phone'] = $phone;
            unset($fields['phone']);
          }
          else
          {
            unset($fields['phone']);
            array_push($errors, 'phone');
          }
          break;

Cheers, Dan

4

There are 4 best solutions below

1
On BEST ANSWER

You forgot delimiters at preg_match, and beginning of string (you try to match substring in whole string).

preg_match('~^07045~', $phone)

The second thing is that regex isn't necessary for this task, substr will be faster.

if (substr($phone, 0, 5) == '07045')
0
On

use

preg_match('/^07045/',$phone);
0
On

You can also use strpos() for this, to avoid regex:

if ( strpos( $phone, '07045' ) === 0 ) 
0
On

You should do this check at client side using javascript or jQuery.
For php use, preg_match('/^07405/',(string)$phone)