php生成复杂url,php – 生成SEO友好URL(slugs)

定义

A slug is the part of a URL which identifies a page using

human-readable keywords.

To make the URL easier for users to type, special characters are often

removed or replaced as well. For instance, accented characters are

usually replaced by letters from the English alphabet; punctuation

marks are generally removed; and spaces (which have to be encoded as

%20 or +) are replaced by dashes (-) or underscores (_), which are

more aesthetically pleasing.

上下文

我开发了一个照片共享网站,用户可以在其上传,分享和查看照片.

所有页面都是自动生成的,没有我对标题的控制.因为照片的标题或用户的名称可能包含重音字符或空格,我需要一个功能来自动创建slugs并保持可读的URL.

我创建了以下函数来替换重音字符(èçëçî),删除标点符号和错误字符(#@&〜^!)并以破折号转换空格.

问题

>您如何看待这个功能?

>你知道创建slu的任何其他功能吗?

function sluggable($str) {

$before = array(

'àáâãäåòóôõöøèéêëðçìíîïùúûüñšž',

'/[^a-z0-9\s]/',

array('/\s/', '/--+/', '/---+/')

);

$after = array(

'aaaaaaooooooeeeeeciiiiuuuunsz',

'',

'-'

);

$str = strtolower($str);

$str = strtr($str, $before[0], $after[0]);

$str = preg_replace($before[1], $after[1], $str);

$str = trim($str);

$str = preg_replace($before[2], $after[2], $str);

return $str;

}

解决方法:

标签:friendly-url,slug,php,string,seo,php

来源: https://codeday.me/bug/20190917/1809106.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值