¡@

Home 

php Programming Glossary: putenv

How to clear php's gettext cache without restart Apache nor change domain?

http://stackoverflow.com/questions/13625659/how-to-clear-phps-gettext-cache-without-restart-apache-nor-change-domain

domain This is a little code snippet from php manual putenv 'LC_ALL zh_CN' setlocale LC_ALL 'zh_CN' bindtextdomain 'domain'..

PHP gettext on Windows

http://stackoverflow.com/questions/1473207/php-gettext-on-windows

apparently the locales are different on a WINDOWS platform putenv LC_ALL locale setlocale LC_ALL locale bindtextdomain greetings..

Invalid font filename (imagettfbox)

http://stackoverflow.com/questions/17489573/invalid-font-filename-imagettfbox

no avail. Here is some of the lines we have tried so far putenv 'GDFONTPATH ' . realpath dirname dirname __FILE__ .DIRECTORY_SEPARATOR.'fonts'..

How do I solve ldap_start_tls() “Unable to start TLS: Connect error” in PHP?

http://stackoverflow.com/questions/2689629/how-do-i-solve-ldap-start-tls-unable-to-start-tls-connect-error-in-php

You can ignore the validity in windows by issuing putenv 'LDAPTLS_REQCERT never' in your php code. In nix you need to..

PHP/Gettext Problems

http://stackoverflow.com/questions/3398113/php-gettext-problems

ago with gettext and the following code worked perfectly putenv 'LANG l33t' putenv 'LANGUAGE l33t' putenv 'LC_MESSAGES l33t'.. and the following code worked perfectly putenv 'LANG l33t' putenv 'LANGUAGE l33t' putenv 'LC_MESSAGES l33t' if defined 'LC_MESSAGES'.. worked perfectly putenv 'LANG l33t' putenv 'LANGUAGE l33t' putenv 'LC_MESSAGES l33t' if defined 'LC_MESSAGES' available if PHP..

Problems with secure bind to Active Directory using PHP

http://stackoverflow.com/questions/5258556/problems-with-secure-bind-to-active-directory-using-php

fix from http www.php.net manual en ref.ldap.php#77553 putenv 'LDAPTLS_REQCERT never' #################### # SSL bind attempt..