Jump to content

Deprecated eregi statement


lkeeney

Recommended Posts

I know next to nothing about this part of PHP. However I was able to generate a rather large application form using eregi statements that worked fine until they deprecated the eregi statement.

 

I understand I should use the preg_match statement but I can't get it to work on my form.

 

Here is the first statement in my form:

$string_exp = "^[a-z .'-]+$";
 if(!eregi($string_exp,$first_name)) {
  $error_message .= 'The First Name you entered does not appear to be valid.';}

 

Can someone tell me how to convert this to a preg_match statement? Or if there is another better method please let me know.

 

Lawrence

Link to comment
Share on other sites

$string_exp = "@^[a-z .'-]+$@i";
if(preg_match($string_exp,$first_name) == 0) {
$error_message .= 'The First Name you entered does not appear to be valid.';}

 

Give that a whirl.

 

Edit: added the "i" PCRE switch to make it caseless.

Edited by pkSML
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.