首页 > 代码库 > PHP 中正则的应用 I Ⅱ Ⅲ

PHP 中正则的应用 I Ⅱ Ⅲ

int preg_match ( string $pattern , string $subject [, array &$matches [, int $flags = 0 [, int $offset = 0 ]]] )

<?php
$subject = "abcdef";
$pattern = ‘/^def/‘;
preg_match($pattern, $subject, $matches, PREG_OFFSET_CAPTURE, 3);
print_r($matches);
?>
preg_match()返回 pattern 的匹配次数。 它的值将是0次(不匹配)或1次,因为preg_match()在第一次匹配后 将会停止搜索。
preg_match_all()不同于此,它会一直搜索subject 直到到达结尾。 如果发生错误preg_match()返回 FALSE
 

PHP 中正则的应用 I Ⅱ Ⅲ