- 相關(guān)推薦
php字符轉(zhuǎn)URL地址的函數(shù)
php提供了urlencode()、urldecode()、rawurlencode()、rawurldecode()函數(shù)了,利用它就可以直接轉(zhuǎn)換URL地址。下面是小編為大家?guī)淼膒hp字符轉(zhuǎn)URL地址的函數(shù),歡迎閱讀。
php字符轉(zhuǎn)URL地址的函數(shù)
代碼如下
function tourl($str) {
$str = preg_replace('/[^a-zA-Z0-9]+/', '-', $str);
$str = trim($str, '-');
return strtolower($str);
}
包含特殊字符:
代碼如下
function strtourl($str) {
$str = htmlentities($str, ENT_QUOTES, "UTF-8");
$str = preg_replace('/&([a-z]{1,2})(?:acute|lig|grave|ring|tilde|uml|cedil|caron);/i','1',$str);
$str = html_entity_decode($str, ENT_QUOTES, "UTF-8");
$str = preg_replace('/[^a-z0-9]+/i', '-', $str);
return strtolower($str);
}
除了上面方法php提供了urlencode()、urldecode()、rawurlencode()、rawurldecode()函數(shù)了,利用它就可以直接轉(zhuǎn)換了這個就不介紹了。
【php字符轉(zhuǎn)URL地址的函數(shù)】相關(guān)文章:
php字符串處理函數(shù)大全08-21
PHP的壓縮函數(shù)06-21
關(guān)于php去除字符串中空字符的常用方法09-14
淺析php函數(shù)的實例06-08
關(guān)于php中的一個中文字符串截取函數(shù)07-15
《PHP字符串操作》收集整理08-08