php は現在の URL アドレスとパラメータを取得します
http://biao.lequj.com/pin-index-cat-6-tag-Casio/%E5%8D%A1%E8%A5%BF%E6%AC% A7 .html
php はタグの背後にあるパラメータをどのように取得しますか -
-----解決策---------------- - ---
$str = 'http://biao.lequj.com/pin-index-cat-6-tag-Casio/%E5%8D%A1%E8%A5%BF%E6%AC%A7.html'; preg_match('/tag-(.*).html$/i', $str, $match); if (isset($match[1])) エコー urldecode($match[1]);