PHP头条
热点:

PHP的SEO优化方法-URL优化-PHP源码


PHP 的 SEO优化方法-URL优化

在处理地址URL时,用这个函数可以轻松就把单词用"-"连起来

function getSeoVersion($phrase) {
  return preg_replace('/[^a-z0-9_-]/i', '', strtolower(str_replace(' ', '-', trim($phrase))));
}
  
// example usage:
echo getSeoVersion("German cars are amazing.");

以上就是PHP 的 SEO优化方法-URL优化的内容,更多相关内容请关注PHP中文网(www.php1.cn)!

www.phpzy.comtrue/php/34177.htmlTechArticlePHP的SEO优化方法-URL优化-PHP源码 PHP 的 SEO优化方法-URL优化 在处理地址URL时,用这个函数可以轻松就把单词用"-"连起来 function getSeoVersion($phrase) { return preg_replace(/[^a-z0-9_-]/i, , strtolower(str_...

相关文章

PHP之友评论

今天推荐