从网址中提取商品ID

时间:2013-07-09 12:49:23

标签: php regex preg-match

如何从此结构的url中提取项ID:

http://site.com/items/123456/item_title_is_here.html

在这种情况下,物品ID为123456

1 个答案:

答案 0 :(得分:1)

使用此

$item = explode('/', $_SERVER['REQUEST_URI']);
$itemId = $item[4];