[ Index ] |
|
Code source de Symfony 1.0.0 |
[Code source] [Imprimer] [Statistiques]
(pas de description)
Poids: | 74 lignes (3 kb) |
Inclus ou requis: | 0 fois |
Référencé: | 0 fois |
Nécessite: | 0 fichiers |
RegexpEngine:: (5 méthodes):
setIgnoreCase()
getIgnoreCase()
match()
matchAll()
replace()
Interface: RegexpEngine - X-Ref
Contains some shared attributes and methods -- and some abstract methods withsetIgnoreCase($bit) X-Ref |
Sets whether or not regex operation should ingore case. param: boolean $bit return: void |
getIgnoreCase() X-Ref |
Returns status of ignore case flag. return: boolean |
match($pattern, $source, &$matches) X-Ref |
Matches pattern against source string and sets the matches array. param: string $pattern The regex pattern to match. param: string $source The source string. param: array $matches The array in which to store matches. return: boolean Success of matching operation. |
matchAll($pattern, $source, &$matches) X-Ref |
Matches all patterns in source string and sets the matches array. param: string $pattern The regex pattern to match. param: string $source The source string. param: array $matches The array in which to store matches. return: boolean Success of matching operation. |
replace($pattern, $replace, $source) X-Ref |
Replaces $pattern with $replace in $source string. param: string $pattern The regex pattern to match. param: string $replace The string with which to replace matches. param: string $source The source string. return: string The replaced source string. |
Généré le : Fri Mar 16 22:42:14 2007 | par Balluche grâce à PHPXref 0.7 |