|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-11-01 14:27 UTC] sniper@php.net
[2005-11-01 17:27 UTC] liber at iproom dot com
[2005-11-03 15:16 UTC] mike@php.net
[2005-11-03 15:19 UTC] liber at iproom dot com
[2005-11-03 15:28 UTC] mike@php.net
[2005-11-11 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 02:00:01 2025 UTC |
Description: ------------ First, var_dump the result read by parse_ini_file is: array ( 'dbHost' => 'localhost', 'dbUser' => 'mmcwebapp', 'dbPassword' => '', 'dbName' => 'faraday', ) but i don't know why, everytime after the command: putenv("TZ="); the result will change as follow: array ( 'dbHost' => 'localhost', 'dbUser' => 'mmcwebapp', 'dbPassword' => '', 'faradayc8XC9-2' => 'faraday', ) I can't not figure out where problem is, then I use Zend Studio and add a watch like this var_export(parse_ini_file(DBX_CONFIG_FILE),1) the DBX_CONFIG_FILE is defined as like as c:\a.ini then I saw the changing in debug mode(step by step).