|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-05-06 13:41 UTC] pedietz at west dot com
The following php script does not work....
<?php
// print the value of my INFORMIXSERVER variable
echo getenv("INFORMIXSERVER");
$conn_id = ifx_connect ("db@ibm65");
?>
it prints:
ibm65
Warning: ifx_connect: E [SQLSTATE=IX 000 SQLCODE=-25560] in test.php on line 14
25560 means that INFORMIXSERVER is not set in the env.
Which is crazy because I getenv it and echo it.
But the following works:
<?php
putenv("INFORMIXSERVER=ibm65");
$conn_id = ifx_connect ("db@ibm65");
?>
So it seems that the environment variable INFORMIXSERVER is not being read correctly.
Besides having INFORMIXSERVER set in my env, I also have set the /usr/local/lib/php.ini ifx.default_host=ibm65. Yet neither work.
I have to putenv() the value explicitly.
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 13:00:01 2025 UTC |
Also of note, I have register_global = On. phpinfo() shows: register_global = On and On INFORMIXSERVER = ibm65 ifx.default_host = ibm65 Yet it still requires me to do this: putenv("INFORMIXSERVER=ibm65");