/ Published in: PHP
Quick and simple script to make clean urls. Works in combination with Apache mod_rewrites :-)
Expand |
Embed | Plain Text
<?php function slugify($str, $replace="-") { // replace all non letters or digits by $replace // trim and lowercase return $str; } ?>
You need to login to post a comment.
