Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <?php
  2. function slugify( $string, $separator = '-' ) {
  3. $accents_regex = '~&([a-z]{1,2})(?:acute|cedil|circ|grave|lig|orn|ring|slash|th|tilde|uml);~i';
  4. $special_cases = array( '&' => 'and', "'" => '');
  5. $string = mb_strtolower( trim( $string ), 'UTF-8' );
  6. $string = str_replace( array_keys($special_cases), array_values( $special_cases), $string );
  7. $string = preg_replace( $accents_regex, '$1', htmlentities( $string, ENT_QUOTES, 'UTF-8' ) );
  8. $string = preg_replace("/[^a-z0-9]/u", "$separator", $string);
  9. $string = preg_replace("/[$separator]+/u", "$separator", $string);
  10. return $string;
  11. }
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement