PHP function eregi ()

Source: Internet
Author: User
Grammar
    int eregi(string pattern, string string, [array regs]);
Definition and usage

The eregi () function searches a string for a specified pattern of strings. The search is case-insensitive. Eregi () can be particularly useful for checking validity strings, such as passwords.

The optional input parameter rule contains all matching expressions for an array, which are grouped by the parentheses of the regular expression.

return value

Returns true if the match succeeds, otherwise false

Example

Here is a piece of code that is copied and pasted into a file and validates the result.

    <?php    $password = "abc";    if (! eregi ("[[:alnum:]]{8,10}", $password))    {       print "Invalid password! Passwords must be from 8 - 10 chars";    }    else    {      print "Valid password";    }    ?>

This will produce the following results:

    Invalid password! Passwords must be from 8 - 10 chars

PHP function eregi ()

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.