我试图捕获名称以“price”开头并以数字0-9结尾的已发布变量,并将数字保存在变量$matches
中。由于某种原因,我的代码没有抓住它,所以显然我的语法是关闭的。继承我的代码..
elseif (preg_match('price/[1-9]/', $field_name, $matches)) {
答案 0 :(得分:1)
preg_match('/^price([0-9])$/', $field_name, $matches)
$matches[1]
将为您提供电话号码。