Archive for the 'Php - Mysql' Category

Seo Fonksiyonumuz

Kodumumuz
___________

function haymi_seo($s) {
$tr = array('ş','Ş','ı','İ','ğ','Ğ','ü','Ü','ö','Ö','Ç','ç');
$eng = array('s','S','i','I','g','G','u','U','o','O','C','c');
$s = str_replace($tr,$eng,$s);
$s = eregi_replace('[^0-9A-Za-z]‘,”-”,$s);

for($i=0;$i <= 10;$i++) {
$s = str_replace(”–”,”-”,$s);
}
return strtolower($s);
}

örnek kullanılışı

___________________________

$duzenlenecek = "Sık kullanılanlara ekle/Yer imlerine ekle";
$url = haymi_seo($duzenlenecek);