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

PHP的SEO优化方法-URL优化(不适合中文)

程序员文章站 2022-04-07 15:29:05
...
在处理地址URL时,用这个函数可以轻松就把单词用"-"连起来 ,不适合中文哦




  1. function getSeoVersion($phrase) {
  2. return preg_replace('/[^a-z0-9_-]/i', '', strtolower(str_replace(' ', '-', trim($phrase))));
  3. }
  4. // 使用方法
  5. echo getSeoVersion("German cars are amazing.");
  6. //返回结果
  7. german-cars-are-amazing
复制代码