欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP SEO优化之URL优化方法_PHP教程

程序员文章站 2022-04-07 15:28:53
...
复制代码 代码如下:

function getSeoVersion($phrase) {
return preg_replace('/[^a-z0-9_-]/i', '', strtolower(str_replace(' ', '-', trim($phrase))));
}

// example usage:
echo getSeoVersion("German cars are amazing.");

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/323099.htmlTechArticle复制代码 代码如下: function getSeoVersion($phrase) { return preg_replace('/[^a-z0-9_-]/i', '', strtolower(str_replace(' ', '-', trim($phrase)))); } // example usage: echo g...