我想从包含数字和字母的字符串中提取数字:
"In My Cart : 11 items"
我想在这里获取号码11或任何其他号码。
11
$str = 'In My Cart : 11 12 items'; preg_match_all('!\d+!', $str, $matches); print_r($matches);