Skip to content

Instantly share code, notes, and snippets.

@arysom
Last active August 29, 2015 14:17
Show Gist options
  • Select an option

  • Save arysom/081ece195ae13dfc7996 to your computer and use it in GitHub Desktop.

Select an option

Save arysom/081ece195ae13dfc7996 to your computer and use it in GitHub Desktop.
validate PL phone number codeigniter function
function validate_phone($phone){
if(
!preg_match("/\(\d{2}\) \d{3}-\d{2}-\d{2}/",$phone) &&
!preg_match("/\d{3}-\d{3}-\d{3}/",$phone)
){
$this->form_validation->set_message('validate_phone', 'Pole {field} nie zawiera poprawnego numeru telefonu');
return false;
} else {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment