当前位置:Gxlcms > PHP教程 > PHP的SEO优化方法-URL优化(不适合中文)

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

时间:2021-07-01 10:21:17 帮助过:4人阅读

在处理地址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

人气教程排行