http://biao.lequj.com/pin-index-cat-6-tag-casio/%e5%8d%a1%e8%a5%bf%e6%ac%a7.html
php如何获取tag-后面的参数
------解决方案--------------------
php code$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])) echo urldecode($match[1]);
