仅筛选字母字符-PHP
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了仅筛选字母字符-PHP相关的知识,希望对你有一定的参考价值。
Replace non alpha-numeric characters with php
/** * Used to give the full hyperlink for news/events items * * @param $type string - events/news * @param $id int - ID of item for link * @param $title string - item title for link to strip bad chars **/ public function seo_slug ( $type, $id, $title ) { // strip bad chars $url = '/'.$type.'/d/'.$id.'/'.$slug.'/'; return $url; }
以上是关于仅筛选字母字符-PHP的主要内容,如果未能解决你的问题,请参考以下文章