PHP 字符串到URL生成器 - 搞砸了
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 字符串到URL生成器 - 搞砸了相关的知识,希望对你有一定的参考价值。
function tourl($strText) {
$strText = preg_replace('/ã|â|á|ä|à /i','a',$strText);
$strText = preg_replace('/ê|é|ë|è/i','e',$strText);
$strText = preg_replace('/î|Ã|ï|ì/i','i',$strText);
$strText = preg_replace('/õ|ô|ó|ö|ò/i','o',$strText);
$strText = preg_replace('/û|ú|ü|ù/i','u',$strText);
$strText = str_ireplace(array('ç','ñ'),array('c','n'),$strText);
$strText = preg_replace('/[^A-Za-z0-9-]/', ' ', $strText);
$strText = preg_replace('/ +/', ' ', $strText);
$strText = trim($strText);
$strText = str_replace(' ', '-', $strText);
$strText = preg_replace('/-+/', '-', $strText);
$strText = strtolower($strText);
return $strText;
}
以上是关于PHP 字符串到URL生成器 - 搞砸了的主要内容,如果未能解决你的问题,请参考以下文章
php时间搞砸了
一个字符搞砸了 htaccess
.htaccess 搞砸了 .php 扩展名?
Node.js - 使用 json.stringify 时,正文搞砸了
python PIL png文本搞砸了
会话在外部主机上搞砸了