这是我的代码:
$sql = "SELECT `description` FROM `auctions` WHERE `description` REGEXP '[0-9]{10}'";
$result = mysql_query($sql);
while ($row = mysql_fetch_assoc($result)) {
echo $row["description"];
}
这将返回整个字段description
,我只需要获取与 REGEXP 匹配的部分,我该如何使用 php?