preg_match函數用于在字符串中進行正則表達式匹配。
語法:
preg_match($pattern, $subject, $matches)
參數:
$pattern
:正則表達式模式。$subject
:需要進行匹配的字符串。$matches
:用于存儲匹配結果的數組。返回值:
示例:
$pattern = '/\d+/'; // 匹配連續的數字
$subject = 'abc123def456';
$matches = array();
if (preg_match($pattern, $subject, $matches)) {
echo "匹配成功!";
echo "匹配到的數字為:" . $matches[0];
} else {
echo "匹配失敗!";
}
輸出:
匹配成功!
匹配到的數字為:123
在上面的示例中,正則表達式模式/\d+/
匹配連續的數字。使用preg_match函數可以將匹配結果存儲在$matches數組中,匹配到的數字為$matches[0]。