Citation :
Description
int preg_match ( string pattern, string subject [, array &matches [, int flags [, int offset]]] )
preg_match() analyse subject pour trouver l'expression qui correspond à pattern.
Si matches est fourni, il sera rempli par les résultats de la recherche. $matches[0] contiendra le texte qui satisfait le masque complet, $matches[1] contiendra le texte qui satisfait la première parenthèse capturante, etc.
|