22.4. Using Regular Expressions in PHP Scripts

The basic function for executing regular expressions is ereg. This function evaluates a string against a regular expression, returning TRUE if the pattern described by the regular expression appears in the string. In this minimal form, you can check that a string conforms to a given pattern. For example, you can ensure that a U.S. postal ZIP code is in the proper form of five digits followed by a dash and four more digits. Listing 22.2 demonstrates this idea; Figure 22.2 shows the output.

Listing 22.2. hecking a ZIP code
 <?php /* ** Check a ZIP code ** This script will test a zip code, which ** must be five digits, optionally followed by ** a dash and four digits. */ /* ** if zip submitted evaluate ...

Get Core PHP Programming, Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.