首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >去掉php变量,用短划线替换空格

去掉php变量,用短划线替换空格
EN

Stack Overflow用户
提问于 2012-07-04 21:54:01
回答 3查看 95.6K关注 0票数 75

如何将PHP变量从"My company & My Name“转换为"my-company-my-name"?

我需要让它全部小写,删除所有特殊字符,并用破折号替换空格。

EN

Stack Overflow用户

回答已采纳

发布于 2012-07-04 21:56:27

此函数将创建SEO友好的字符串

代码语言:javascript
复制
function seoUrl($string) {
    //Lower case everything
    $string = strtolower($string);
    //Make alphanumeric (removes all other characters)
    $string = preg_replace("/[^a-z0-9_\s-]/", "", $string);
    //Clean up multiple dashes or whitespaces
    $string = preg_replace("/[\s-]+/", " ", $string);
    //Convert whitespaces and underscore to dash
    $string = preg_replace("/[\s_]/", "-", $string);
    return $string;
}

应该没问题:)

票数 255
EN
查看全部 3 条回答
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/11330480

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档