ereg The ereg function searches a string specified by string for a string specified by pattern, returning true if the pattern is found, and false otherwise.. Its syntax is: string eregi_
Trang 1// Increment the count // Recursive call to display_directory() function display_directory($file, $folder_location, $using_linux, // $init_depth);
// Not dealing with a directory else :
// Build path In accordance with what OS Is being used.
\"".$dir."/".basename($file)."\">".basename($file)."</a> <br>";
endif;
endif; // Is_dir(file) endif; // If ! "." or " "
Trang 3What’s Next?
This chapter introduced many aspects of PHP’s file-handling functionality, in
par-ticular:
• Verifying a File’s Existence
• Opening I/O and closing I/O
• Writing to and reading from a file
• Redirecting a file directly to output
• External program execution
• Working with the file systemThese topics set the stage for the next chapter, “Strings and Regular Expres-sions,” as string manipulation and I/O manipulation go hand in hand when you
are developing PHP-enabled Web applications With that said, let’s forge ahead!
Trang 5C H A P T E R 8
Strings and Regular
Expressions
The ability to efficiently organize, search, and disseminate information has long
been a topic of great interest for computer scientists Because most of this
infor-mation is text based as alphanumeric characters, a good deal of research has been
invested in developing techniques to search and organize information based on
an analysis of the patterns (known as pattern matching) in the text itself.
Pattern matching makes it possible not only to locate specific string instancesbut also to replace these instances with alternative strings Common use of pat-
tern matching is made in the find/replace functionality in word processors such
as MS Word, Emacs, and my personal favorite, vi UNIX users are undoubtedly
familiar with programs such as sed, awk, and grep, all of which use
pattern-matching techniques to provide the powerful functionality in each Summarizing,
pattern matching provides four useful functions:
• Locating strings exactly matching a specified pattern
• Searching strings for substrings matching a specified pattern
• Replacing strings and substrings matching a specified pattern
• Finding strings where the specified pattern does not match
The advent of the Web has caused a surge in research in faster, more efficientdata-mining techniques, providing users worldwide with the capability to sift
through the billions of pages of information Search engines, online financial
services, and ecommerce sites would all be rendered useless without the ability
to analyze the mammoth quantities of data in these sectors Indeed,
string-manipulation capabilities are a vital part of almost any sector involving itself with
information technology today
This chapter concentrates on PHP’s adept string-handling functionality I willfocus on a number of the more than 60 predefined string functions, providing
definitions and practical examples that will give you the knowledge you need
to begin coding powerful Web applications However, before presenting the
PHP-specific content of this chapter, I would like to provide a brief introduction
Trang 6to the underlying mechanics that make pattern matching possible: regular pressions.
ex-Regular Expressions
Regular expressions, or regexps, as they are so affectionately called by
program-mers, provide the foundation for pattern-matching functionality A regular pression is nothing more than a sequence or pattern of characters itself, matchedagainst the text in which a search has been requested This sequence may be apattern with which you are already familiar, such as the word “dog,” or it may be apattern having specific meaning in the context of the world of pattern-matching,such as <(?)>.*<\/.?>
ex-PHP offers functions specific to two sets of regular expression functions, eachcorresponding to a certain type of regular expression: POSIX and Perl style Eachhas its own unique style of syntax and is discussed accordingly in later sections.Keep in mind that innumerable tutorials have been written regarding this matter;you can find them both on the Web and in various books Therefore, I will provideyou with a basic introduction to both and leave it to you to search out further in-formation should you be so inclined
If you are not already familiar with the mechanics of general expressions,please take some time to read through the short tutorial comprising the remain-der of this section If you are already a regexp pro, feel free to skip past the tutorial
to subsequent sections
Regular Expression Syntax (POSIX)
The structure of a POSIX regular expression is not dissimilar to that of a typicalarithmetic expression: various elements (operators) are combined to form morecomplex expressions However, it is the meaning of the combined regexp ele-ments that makes them so powerful It is possible not only to locate literal expres-sions, such as a specific word or number, but also to locate a multitude of seman-tically different but syntactically similar strings, for instance, all HTML tags in afile
The simplest regular expression is one that matches a single character, such
as g, matching strings such as g, haggle, and bag You could combine several ters together to form larger expressions, such as gan, which logically would match any string containing gan; gang, organize, or Reagan, for example.
let-It is possible to simultaneously test for several different expressions by using
the pipe (|) operator For example, you could test for php or zend via the regular
expression php|zend
Trang 7Brackets ([ ]) have a special meaning when used in the context of regular
expres-sions, used to find a range of characters Contrary to the regexp php, which will
find strings containing the explicit string php, the regexp [php] will find any string
containing the character p or h Bracketing plays a significant role in regular
ex-pressions, since many times you may be interested in finding strings containing
any of a range of characters Several commonly used character ranges follow:
• [0–9] matches any decimal digit from 0 through 9
• [a–z] matches any character from lowercase a through lowercase z.
• [A–Z] matches any character from uppercase A through uppercase Z.
• [a–Z] matches any character from lowercase a through uppercase Z.
Of course, the ranges shown above are general; you could also use the range[0–3] to match any decimal digit ranging from 0 through 3, or the range [b–v] to
match any lowercase character ranging from b through v In short, you are free to
specify whatever range you wish
Quantifiers
The frequency or position of bracketed character sequences and single characters
can be denoted by a special character, each special character having a specific
connotation The +, *, ?, {int range}, and $ flags all follow a character sequence:
• p+ matches any string containing at least one p.
• p* matches any string containing zero or more p’s.
• p? matches any string containing zero or more p’s This is just an alternative
way to use p*
• p{2} matches any string containing a sequence of two p’s
• p{2,3} matches any string containing a sequence of two or three p’s.
• p{2, } matches any string containing a sequence of at least two p’s.
• p$ matches any string with p at the end of it.
Trang 8Still other flags can precede and be inserted before and within a character quence:
se-• ^p matches any string with p at the beginning of it.
• [^a–zA-Z] matches any string not containing any of the characters ranging from a through z and A through Z.
• p.p matches any string containing p, followed by any character, in turn lowed by another p.
fol-You can also combine special characters to form more complex expressions.Consider the following examples:
• ^.{2}$ matches any string containing exactly two characters.
• <b>(.*)</b> matches any string enclosed within <b> and </b> (presumablyHTML bold tags)
• p(hp)* matches any string containing a p followed by zero or more stances of the sequence hp.
in-You may wish to search for these special characters in strings instead of usingthem in the special context just described For you to do so, the characters must
be escaped with a backslash (\) For example, if you wanted to search for a dollaramount, a plausible regular expression would be as follows: ([^\$])([0-9]+), that is,
a dollar sign followed by one or more integers Notice the backslash preceding thedollar sign Potential matches of this regular expression include $42, $560, and $3
Predefined Character Ranges (Character Classes)
For your programming convenience several predefined character ranges, also
known as character classes, are available Character classes specify an entire range
of characters, for example, the alphabet or an integer set:
[[:alpha:]] matches any string containing alphabetic characters aA through zZ.
[[:digit:]] matches any string containing numerical digits 0 through 9
[[:alnum:]] matches any string containing alphanumeric characters aA through zZ and 0 through 9.
[[:space:]] matches any string containing a space
Trang 9PHP’s Regexp Functions (POSIX Extended)
PHP currently offers seven functions for searching strings using POSIX-style
regu-lar expressions:
ereg()ereg_replace()eregi()eregi_replace()split()spliti()sql_regcase()These functions are discussed in the following sections
ereg()
The ereg() function searches a string specified by string for a string specified by
pattern, returning true if the pattern is found, and false otherwise Its syntax is:
int ereg(string pattern, string string, [array regs])
The search is case sensitive in regard to alphabetical characters Here’s how you
could use ereg() to search strings for com domains:
$is_com = ereg("(\.)(com$)", $email);
// returns true if $email ends with ".com".
// "www.wjgilmore.com" and "someemail@apress.com" would both return true values.
Note that since the $ concludes the regular expression, this will match onlystrings that end in com For example, while this would match www.apress.com, it
would not match www.apress.com/catalog.
The optional input parameter regs contains an array of all matched
expres-sions that were grouped by parentheses in the regular expression Making use of
this array, we could segment a URL into several pieces, as shown in Listing 8-1
Trang 10Listing 8-1: Displaying elements of $regs array
<?
$url = "http://www.apress.com";
// break $url down into three distinct pieces: "http://www", "apress", and "com"
$www_url = ereg("^(http://www)\.([[:alnum:]]+)\.([[:alnum:]]+)", $url, $regs);
if ($www_url) : // if $www_url is a valid URL echo $regs[0]; // outputs the entire string "http://www.apress.com" print "<br>";
echo $regs[1]; // outputs "http://www"
apress com
ereg_replace()
The ereg_replace() function searches for string specified by pattern and replaces
pattern with replacement if found The syntax is:
string ereg_replace (string pattern, string replacement, string string)
The ereg_replace() function operates under the same premises as ereg(),
except that the functionality is extended to finding and replacing pattern instead
of simply locating it After the replacement has occurred, the modified string will
be returned If no matches are found, the string will remain unchanged Likeereg(), ereg_replace() is case sensitive Here is a simple string replacement ex-ample that uses the function:
$copy_date = "Copyright 1999";
$copy_date = ereg_replace("([0-9]+)", "2000", $copy_date);
print $copy_date; // displays "Copyright 2000"
Trang 11A rather interesting feature of PHP’s string-replacement capability is the ity to back-reference parenthesized substrings This works much like the optional
abil-input parameter regs in the function ereg(), except that the substrings are
refer-enced using backslashes, such as \0, \1, \2, and so on, where \0 refers to the entire
string, \1 the first successful match, and so on Up to nine back references can be
used This example shows how to replace all references to a URL with a working
hyperlink:
$url = "Apress (http://www.apress.com)";
$url = ereg_replace("http://(([A-Za-z0-9.\-])*)", "<a href=\"\\0\">\\0</a>",$url);
print $url;
// Displays Apress (<a href="http://www.apress.com">http://www.apress.com</a>)
eregi()
The eregi() function searches throughout a string specified by pattern for a string
specified by string Its syntax is:
int eregi(string pattern, string string, [array regs])
The search is not case sensitive Eregi() can be particularly useful when
checking the validity of strings, such as passwords This concept is illustrated in
the following sample:
$password = "abc";
if (! eregi ("[[:alnum:]]{8,10}", $password)) :
print "Invalid password! Passwords must be from 8 through 10 characters in length.";
endif;
// execution of the above code would produce the error message
// since "abc" is not of length ranging from 8 through 10 characters.
NOTE Although ereg_replace() works just fine, another predefined tion named str_replace() is actually much faster when complex regular expressions are not required Str_replace() is discussed later in this chapter.
Trang 12The eregi_replace() function operates exactly like ereg_replace(), except that
the search for pattern in string is not case sensitive Its syntax is:
string eregi_replace (string pattern, string replacement, string string)
split()
The split() function will divide a string into various elements, the boundaries of
each element based on the occurrence of pattern in string Its syntax is:
array split (string pattern, string string [, int limit])
The optional input parameter limit is used to signify the number of elements
into which the string should be divided, starting from the left end of the stringand working rightward In cases where the pattern is an alphabetical character,split()is case sensitive Here’s how you would use split() to partition an IP ad-dress:
$ip = "123.456.789.000"; // some IP address
$iparr = split ("\.", $ip); // Note that since "." is a special character, it
must be escaped.
print "$iparr[0] <br>"; // outputs "123"
print "$iparr[1] <br>"; // outputs "456"
print "$iparr[2] <br>"; // outputs "789"
print "$iparr[3] <br>"; // outputs "000"
You could also use split() to limit a parameter to restrict division of $ip:
$ip = "123.456.789.000"; // some IP address
$iparr = split ("\.", $ip, 2); // Note that since "." is a special character,
it must be escaped.
print "$iparr[0] <br>"; // outputs "123"
print "$iparr[1] <br>"; // outputs "456.789.000"
spliti()
The spliti() function operates exactly in the same manner as its sibling split(),
except that it is not case sensitive Its syntax is:
array split (string pattern, string string [, int limit])
Trang 13Of course, case-sensitive characters are an issue only when the pattern is phabetical For all other characters, spliti() operates exactly as split() does.
al-sql_regcase()
The sql_regcase() function can be thought of as a utility function, converting
each character in the input parameter string into a bracketed expression
contain-ing two characters Its syntax is:
string sql_regcase (string string)
If the alphabetical character has both an uppercase and a lowercase format,the bracket will contain both forms; otherwise the original character will be re-
peated twice This function is particularly useful when PHP is used in conjunction
with products that support solely case-sensitive regular expressions Here’s how
you would use sql_regcase() to convert a string:
$version = "php 4.0";
print sql_regcase($version);
// outputs [Pp] [Hh] [Pp] [ ] [44] [ ] [00]
Regular Expression Syntax (Perl Style)
Perl (http://www.perl.com), long considered one of the greatest parsing
lan-guages ever written, provides a comprehensive regular expression language that
can be used to search and replace even the most complicated of string patterns
The developers of PHP felt that instead of reinventing the regular expression
wheel, so to speak, they should make the famed Perl regular expression syntax
available to PHP users, thus the Perl-style functions
Perl-style regular expressions are similar to their POSIX counterparts In fact,Perl’s regular expression syntax is a distant derivation of the POSIX implementa-
tion, resulting in the fact that the POSIX syntax can be used almost
interchange-ably with the Perl-style regular expression functions
I devote the remainder of this section to a brief introduction of Perl regexpsyntax This is a simple example of a Perl regexp:
/food/
Notice that the string ‘food’ is enclosed between two forward slashes Just like
with POSIX regexps, you can build a more complex string through the use of
quantifiers:
Trang 14This will match ‘fo’ followed by one or more characters Some potential matchesinclude ‘food’, ‘fool’, and ‘fo4’ Here is another example of using a quantifier:/fo{2,4}/
This matches ‘’f ‘’ followed by two to four occurrences of ‘o.’ Some potentialmatches include ‘fool’, ‘fooool’, and ‘foosball’
In fact, you can use any of the quantifiers introduced in the previous POSIXsection
Metacharacters
Another cool thing you can do with Perl regexps is use various metacharacters to
search for matches A metacharacter is simply an alphabetical character preceded
by a backslash that acts to give the combination a special meaning For instance,you can search for large money sums using the ‘\d’ metacharacter:
Trang 15Several modifiers are available that can make your work with regexps much
eas-ier There are many of these; however, I will introduce just a few of the more
inter-esting ones in Table 8-1 These modifiers are placed directly after the regexp, for
example, /string/i
Table 8-1 Three Sample Modifiers
MODIFIER DESCRIPTION
m Treats a string as several (‘m’ for multiple) lines By default, the ‘^’ and ‘$’
special characters match at the very start and very end of the string inquestion Using the ‘m’ modifier will allow for ‘^’ and ‘$’ to match at the
beginning of any line in a string.
s Accomplishes just the opposite of the ‘m’ modifier, treating a string as a
single line, ignoring any newline characters found within
i Implies a case-insensitive search
This introduction has been brief, as attempting to document regular sions in their entirety is surely out of the scope of this book and could easily fill
expres-many chapters rather than just a few pages For more information regarding
regu-lar expression syntax, check out these great online resources:
PHP’s Regexp Functions (Perl Compatible)
PHP offers five functions for searching strings using Perl-compatible regular
ex-pressions:
• preg_match()
• preg_match_all()
Trang 16• preg_replace()
• preg_split()
• preg_grep()These functions are discussed in the following sections
preg_match()
The preg_match() function searches string for pattern, returning true if pattern
ex-ists, and false otherwise Its syntax follows:
int preg_match (string pattern, string string [, array pattern_array])
If the optional input parameter pattern_array is provided, then pattern_array will
contain various sections of the subpatterns contained in the search pattern, if plicable Here’s an example that uses preg_match() to perform a case-sensitivesearch:
ap-$line = "Vi is the greatest word processor ever created!";
// perform a case-Insensitive search for the word "Vi"
if (preg_match("/\bVi\b/i", $line, $match)) : print "Match found!";
Trang 17• PREG_SET_ORDER will order the array a bit differently than the default ting $pattern_array[0] will contain elements matched by the first paren-thesized regexp, $pattern_array[1] will contain elements matched by thesecond parenthesized regexp, and so on
set-Here’s how you would use preg_match_all to find all strings enclosed in boldHTML tags:
$userinfo = "Name: <b>Rasmus Lerdorf</b> <br> Title: <b>PHP Guru</b>";
preg_match_all ("/<b>(.*)<\/b>/U", $userinfo, $pat_array);
print $pat_array[0][0]." <br> ".$pat_array[0][1]."\n";
Rasmus Lerdorf
PHP Guru
preg_replace()
The preg_replace() function operates just like ereg_replace(), except that
regu-lar expressions can be used in the pattern and replacement input parameters Its
syntax is:
mixed preg_replace (mixed pattern, mixed replacement, mixed string [, int limit])
The optional input parameter limit specifies how many matches should take place Interestingly, the pattern and replacement input parameters can be arrays.
Preg_replace()will cycle through each element of each array, making
replace-ments as they are found
preg_split()
The preg_split() function operates exactly like split(), except that regular
ex-pressions are accepted as input parameters for pattern Its syntax is:
array preg_split (string pattern, string string [, int limit [, int flags]])
If the optional input parameter limit is specified, then only limit number of
substrings are returned This example uses preg_split() to parse a variable
Trang 18$user_info = "+WJ+++Gilmore+++++wjgilmore@hotmail.com++++++++Columbus+++OH";
$fields = preg_split("/\+{1,}/", $user_info);
while ($x < sizeof($fields)) : print $fields[$x] "<br>";
$x++;
endwhile;
WJ Gilmore wjgilmore@hotmail.com Columbus
OH
preg_grep()
The preg_grep() function searches all elements of input_array, returning all ments matching the regexp pattern Its syntax is:
ele-array preg_grep (string pattern, ele-array input_ele-array)
Here’s how you would use preg_grep() to search an array for foods beginning
with p:
$foods = array("pasta", "steak", "fish", potatoes");
// find elements beginning with "p", followed by one or more letters.
$p_foods = preg_grep("/p(\w+)/", $foods);
$x = 0;
while ($x < sizeof($p_foods)) : print $p_foods[$x] "<br>";
$x++;
endwhile;
pasta potatoes
Trang 19Other String-Specific Functions
In addition to the regular expression–based functions discussed in the first half of
this chapter, PHP provides 70+ functions geared toward manipulating practically
every aspect of a string that you can think of To list and explain each function
would be out of the scope of this book and would not accomplish much more
than repeat much of the information in the PHP documentation Therefore, I
have devoted the remainder of this chapter to a FAQ of sorts, the questions being
those that seem to be the most widely posed in the many PHP discussion groups
and related sites Hopefully, this will be a much more efficient means for covering
the generalities of the immense PHP string-handling library
Padding and Compacting a String
For formatting reasons, it is necessary to modify the string length via either
padding or stripping characters PHP provides a number of functions for doing so
chop()
The chop() function returns a string minus any ending whitespace and newlines
Its syntax is:
string chop (string str)
This example uses chop() to remove unnecessary newlines:
$header = "Table of Contents:\n\n";
$header = chop($header);
// $header = "Table of Contents"
str_pad()
The str_pad() function will pad string to length pad_length with a specified set of
characters, returning the newly formatted string Its syntax is:
string str_pad (string input, int pad_length [, string pad_string [, int
pad_type]])
If the optional parameter pad_string is not specified, string will be padded with
blank spaces; otherwise it will be padded with the character pattern specified in
Trang 20pad_string By default, the string will be padded to the right; however, the tional pad_type may be assigned STR_PAD_RIGHT, STR_PAD_LEFT, or
op-STR_PAD_BOTH, padding the string accordingly This example shows how to pad
a string using str_pad() defaults:
$food = "salad";
print str_pad ($food, 5); // prints "salad "
This sample makes use of str_pad()’s optional parameters:
$header = "Table of Contents";
print str_pad ($header, 5, "=+=+=", STR_PAD_BOTH);
// "=+=+=Table of Contents=+=+=" will be displayed to the browser.
trim()
The trim() function will remove all whitespace from both the left and right sides
of string, returning the resulting string Its syntax is:
string trim (string string)
It will also remove the special characters “\n”, “\r”, “\t”, “\v” and “\0”
ltrim()
The ltrim() function will remove the whitespace and special characters from the
left side of string, returning the remaining string Its syntax follows:
string ltrim (string str)The special characters that will be removed are the same as those removed bytrim()
Finding Out the Length of a String
You can determine the length of a string through use of the strlen() function.This function returns the length of a string, each character in the string beingequivalent to one unit Its syntax is:
int strlen (string str)
Trang 21This example uses strlen() to determine the length of a string:
$string = "hello";
$length = strlen($string);
// $length = 5
Comparing Two Strings
String comparison is arguably one of the most important features of the
string-handling capabilities of any language Although there are many ways in which
two strings can be compared for equality, PHP provides four functions for
per-forming this task:
• strcmp()
• strcasecmp()
• strspn()
• strcspn()These functions are discussed in the following sections
strcmp()
The strcmp() function performs a case-sensitive comparison of two strings Its
syntax follows:
int strcmp (string string1, string string2)
On completion of the comparison, strcmp() will return one of three possiblevalues:
• 0 if string1 and string2 are equal
• < 0 if string1 is less than string2
• > 0 if string2 is less than string1
Trang 22This listing compares two equivalent string values:
$string1 = "butter";
$string2 = "butter";
if ((strcmp($string1, $string2)) == 0) : print "Strings are equivalent!";
endif;
// If statement will evaluate to true
strcasecmp()
The strcasecmp() function operates exactly like strcmp(), except that its
compari-son is case insensitive Its syntax is:
int strcasecmp (string string1, string string2)The following example compares two equivalent string values:
$string1 = "butter";
$string2 = "Butter";
if ((strcasecmp($string1, $string2)) == 0) : print "Strings are equivalent!";
endif;
// If statement will evaluate to true
strspn()The strspn() function returns the length of the first segment in string1 containing characters also in string2 Its syntax is:
int strspn (string string1, string string2)Here’s how you would use strspn() to validate a password:
$password = "12345";
if (strspn($password, "1234567890") != strlen($password)) : print "Password cannot consist solely of numbers!";
endif;
Trang 23The strcspn() function returns the length of the first segment in string1
contain-ing characters not in strcontain-ing2 Its syntax is:
int strcspn (string str1, string str2)
Here’s an example of password validation using strcspn():
$password = "12345";
if (strcspn($password, "1234567890") == 0) :
print "Password cannot consist solely of numbers!";
endif;
Alternatives for Regular Expression Functions
When processing large amounts of information, the regular expression functions
can slow matters dramatically You should use these functions only when you are
interested in parsing relatively complicated strings that require the use of regular
expressions If you are instead interested in parsing for simple expressions, there
are a variety of predefined functions that will speed up the process considerably
Each of these functions is described below
strtok()
The strtok() function will tokenize string, using the characters specified in
to-kens Its syntax is:
string strtok (string string, string tokens)
One oddity about strtok() is that it must be continually called in order to
com-pletely tokenize a string; Each call to strtok() only tokenizes the next piece of the
string However, the string parameter only needs to be specified once, as the
func-tion will keep track of its posifunc-tion in string until it either completely tokenizes
string or a new string parameter is specified This example tokenizes a string with
several delimiters: