|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-08-31 10:10 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 30 17:00:01 2025 UTC |
Description: ------------ I need gettext module with apache2 and windows for php4.4.4. So I have the php_gettext.dll (and also libintl-1.dll and iconv.dll) in the dlls directory. In my php.ini I have extension=php_gettext.dll but each time I have Call to undefined function: Bindtextdomain() Reproduce code: --------------- <?php @setlocale("LC_ALL", "en_en"); putenv('LANGUAGE=en_en'); bindtextdomain ("Mydomain","./translation"); textdomain ('Mydomain'); echo gettext("ceci est un test"); ?> Expected result: ---------------- Display some text : "this is a test" Actual result: -------------- Fatal error: Call to undefined function: bindtextdomain() in......