azmicolejr

judul_seo

Dec 25th, 2016
4,680
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php
  2. function judul_seo($string)
  3. {
  4. $c = array (' ');
  5. $d = array ('-','/','\\',',','.','#',':',';','\'','"','[',']','{','}',')','(','|','`','~','!','@','%','$','^','&','*','=','?','+');
  6. $string = str_replace($d, '', $string); // Hilangkan karakter yang telah disebutkan di array $d
  7. $string = strtolower(str_replace($c, '-', $string)); // Ganti spasi dengan tanda - dan ubah hurufnya menjadi kecil semua
  8. return $string;
  9. }
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment