Created
January 18, 2012 12:56
-
-
Save chluehr/1632883 to your computer and use it in GitHub Desktop.
PHP clean url slug generator / converter (slug)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// source: http://cubiq.org/the-perfect-php-clean-url-generator | |
// author: Matteo Spinelli | |
// MIT License / http://creativecommons.org/licenses/by-sa/3.0/ (please re-check at source) | |
setlocale(LC_ALL, 'en_US.UTF8'); | |
function toAscii($str, $replace=array(), $delimiter='-') { | |
if( !empty($replace) ) { | |
$str = str_replace((array)$replace, ' ', $str); | |
} | |
$clean = iconv('UTF-8', 'ASCII//TRANSLIT', $str); | |
$clean = preg_replace("/[^a-zA-Z0-9\/_|+ -]/", '', $clean); | |
$clean = strtolower(trim($clean, '-')); | |
$clean = preg_replace("/[\/_|+ -]+/", $delimiter, $clean); | |
return $clean; | |
} | |
// usage: | |
echo toAscii("Peux-tu m'aider s'il te plaît?", "'"); // French | |
// returns: peux-tu-m-aider-s-il-te-plait |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
why single quote coming as 39?