Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.php > #15247
| From | "Christoph M. Becker" <cmbecker69@arcor.de> |
|---|---|
| Newsgroups | comp.lang.php |
| Subject | Re: Check for a set of strings in a string - pregmatch ? if so how |
| Date | 2015-04-12 14:59 +0200 |
| Organization | solani.org |
| Message-ID | <mgdq7s$4ra$1@solani.org> (permalink) |
| References | <45272146-5b3d-4a4e-9512-6f3c9bdcb588@googlegroups.com> |
Richard Townsend-Rose: > for years we checked against injection using > > if (eregi( "(%0D)|(%0A)|(0x0A)|(0x0D)|(MIME-Version)| > (Content-Type)|(Content-Transfer)|(Content-Disposition)| > (boundary=)|(Return-Path)", $var ) ) > > i.e. we want to know if the string 0x0D and any of the other strings exist in $var. so () meant the boundary of the string, and the | character divided the given strings into an array .... i think > > nowhere can i find a decent meaning of what "the word "pattern" means. nor in the manual can i find anything about delimiters The introduction of the POSIX Regex extension[1] links to the regex man page[2] where the pattern syntax is explained. > can preg_match be used ... if so how ? Yes, preg_match can be used. The syntax of PCRE patterns[3] is explained in the PHP manual. Note that there is the Filter extension[4], which is useful for input validation and sanitizing. [1] <http://php.net/manual/en/intro.regex.php> [2] <http://www.tin.org/bin/man.cgi?section=7&topic=regex> [3] <http://php.net/manual/en/pcre.pattern.php> [4] <http://php.net/manual/en/book.filter.php> -- Christoph M. Becker
Back to comp.lang.php | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Check for a set of strings in a string - pregmatch ? if so how Richard Townsend-Rose <richard.townsendrose@gmail.com> - 2015-04-12 05:19 -0700
Re: Check for a set of strings in a string - pregmatch ? if so how "Christoph M. Becker" <cmbecker69@arcor.de> - 2015-04-12 14:59 +0200
Re: Check for a set of strings in a string - pregmatch ? if so how Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2015-04-12 18:38 +0200
Re: Check for a set of strings in a string - pregmatch ? if so how Jerry Stuckle <jstucklex@attglobal.net> - 2015-04-12 16:32 -0400
Re: Check for a set of strings in a string - pregmatch ? if so how "Christoph M. Becker" <cmbecker69@arcor.de> - 2015-04-12 23:45 +0200
Re: Check for a set of strings in a string - pregmatch ? if so how Richard Townsend-Rose <richard.townsendrose@gmail.com> - 2015-04-12 06:21 -0700
Re: Check for a set of strings in a string - pregmatch ? if so how Richard Yates <richard@yatesguitar.com> - 2015-04-12 07:06 -0700
Re: Check for a set of strings in a string - pregmatch ? if so how Curtis Dyer <dyer85@gmail.com> - 2015-04-30 23:17 +0000
Re: Check for a set of strings in a string - pregmatch ? if so how Richard Townsend-Rose <richard.townsendrose@gmail.com> - 2015-04-12 08:28 -0700
csiph-web