%PDF-1.4 %Óëéá 1 0 obj <> endobj 3 0 obj <> endobj 4 0 obj <
| Server IP : 212.252.79.165 / Your IP : 216.73.216.226 [ Web Server : Apache System : Linux 212-252-79-165.cprapid.com 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64 User : cehaburo ( 1001) PHP Version : 8.1.33 Disable Function : exec,passthru,shell_exec,system Domains : 48 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/cehaburo/public_html/admin/lib/ |
Upload File : |
<?php
function GetSeoURL($url) {
$tr = array('ş','Ş','ı','İ','ğ','Ğ','ü','Ü','ö','Ö','Ç','ç',' ','ð','Ý','ý','þ','Ð','.','/','\\\'');
$eng = array('s','S','i','I','g','G','u','U','o','O','C','c','-','g','I','i','s','','','');
$text = str_replace($tr,$eng,$url);
$text = preg_replace("@--*@","-",$text);
return strtolower($text);
}
function tarihDuzenle($tarih){
$array_from_to = array (
'Ocak' => '01',
'Şubat' => '02',
'Mart' => '03',
'Nisan' => '04',
'Mayıs' => '05',
'Haziran' => '06',
'Temmuz' => '07',
'Ağustos' => '08',
'Eylül' => '09',
'Ekim' => '10',
'Kasım' => '11',
'Aralık' => '12'
);
$tarih = strtr($tarih,$array_from_to);
$tarih=explode(' ',$tarih);
$tarih=implode('-',$tarih);
return $tarih;
}
function tarihDuzenleReverse($tarih){
$tarih=date('d-m-Y',strtotime($tarih));
$tarih=explode('-',$tarih);
$array_from_to = array (
'01' => 'Ocak',
'02' => 'Şubat',
'03' => 'Mart',
'04' => 'Nisan',
'05' => 'Mayıs',
'06' => 'Haziran',
'07' => 'Temmuz',
'08' => 'Ağustos',
'09' => 'Eylül',
'10' => 'Ekim',
'11' => 'Kasım',
'12' => 'Aralık'
);
$tarih[1] = strtr($tarih[1],$array_from_to);
$tarih=implode(' ',$tarih);
return $tarih;
}
?>