/**
* PHP将字符串转成SEO友好的字符串
*
* @param
* @arrange 512-笔记网: www.jb51.cc
**/
function slug($str){
$str = strtolower(trim($str));
$str = preg_replace('/[^a-z0-9-]/','-',$str);
$str = preg_replace('/-+/',"-",$str);
return $str;
}
/*** 来自编程之家 jb51.cc(jb51.cc) ***/
原文链接:/php/528239.html