PHP date - get name of the months in local language

后端 未结 5 1623
礼貌的吻别
礼貌的吻别 2020-12-11 00:46

I have this part of the function, which gives me name of the months in English. How can I translate them to my local language (Serbian)?

$month_name = date(\         


        
5条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-11 01:13

    You should use setlocale():

    setlocale(LC_TIME, 'fr_FR');
    $month_name = date('F', mktime(0, 0, 0, $i));
    

    In this case it would set it to French. For your case it should be one of the following:

    1. sr_BA - Serbian (Montenegro)
    2. sr_CS - Serbian (Serbia)
    3. sr_ME - Serbian (Serbia and Montenegro)

提交回复
热议问题