哪位高手有将页面所有连接全部生产伪静态function方法
程序员文章站
2022-05-15 12:06:19
...
谁有将页面所有连接全部生产伪静态function方法?
如果将页面中index.php?c=index&m=lists&id=1这样连接方式全部通过PHP正则替换成 index-lists-1.html的function方法?请高手提供个方法使用下
------解决思路----------------------
如果将页面中index.php?c=index&m=lists&id=1这样连接方式全部通过PHP正则替换成 index-lists-1.html的function方法?请高手提供个方法使用下
------解决思路----------------------
echo foo('index.php?c=index&m=lists&id=1');index-lists-1.html
function foo($url) {
$t = parse_url($url);
parse_str($t['query'], $r);
return "$r[c]-$r[m]-$r[id].html";
}
相关文章
相关视频