function convert_smart_quotes($text){
/*HABER METİNİN İÇİNDE OFFİCE WORLD TİPİ VİRGÜL TEK TIRNAK FİLAN DÜZENTİYOR*/
$text = str_replace(chr(130), ',', $text);
$text = str_replace(chr(132), '"', $text);
$text = str_replace(chr(133), '...',$text);
$text = str_replace(chr(145), "'", $text);
$text = str_replace(chr(146), "'", $text);
$text = str_replace(chr(147), '"', $text);
$text = str_replace(chr(148), '"', $text);
$text = mb_convert_encoding($text, 'HTML-ENTITIES', 'UTF-8');
$text = str_replace('Ğ', 'Ğ', $text);
$text = str_replace('ğ', 'ğ', $text);
$text = str_replace('Ö', 'Ö', $text);
$text = str_replace('ö', 'ö', $text);
$text = str_replace('Ç', 'Ç', $text);
$text = str_replace('ç', 'ç', $text);
$text = str_replace('Ş', 'Ş', $text);
$text = str_replace('ş', 'ş', $text);
$text = str_replace('İ', 'İ', $text);
$text = str_replace('ı', 'ı', $text);
$text = str_replace('Ü', 'Ü', $text);
$text = str_replace('ü', 'ü', $text);
$text = str_replace('"', '"', $text);
return $text;
}