Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この構造の URL からアイテム ID を抽出する方法:
http://site.com/items/123456/item_title_is_here.html
この場合、アイテム ID は 123456 です
これを使って
$item = explode('/', $_SERVER['REQUEST_URI']); $itemId = $item[4];