我想将URL中的字符串清除掉,所以这是我基本上需要的。
例如。
This, is the URL!
必须返回
this-is-the-url
function slug($z){ $z = strtolower($z); $z = preg_replace('/[^a-z0-9 -]+/', '', $z); $z = str_replace(' ', '-', $z); return trim($z, '-'); }