How to debug gettext not working in PHP?

前端 未结 6 1851
心在旅途
心在旅途 2020-12-30 04:02

i am trying to use the php gettext extension in php 5.5 (on win2008 server, using IIS7). I am doing this:



        
6条回答
  •  [愿得一人]
    2020-12-30 04:24

    Try to set also env vars LC_LANG and LC_LANGUAGE not only the LC_ALL:

    putenv("LC_ALL=$locale");
    putenv("LC_LANG=$locale");
    putenv("LC_LANGUAGE=$locale");
    

提交回复
热议问题