|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-10-28 10:42 UTC] iliaa@php.net
[2003-10-28 10:52 UTC] boccara at netvision dot net dot il
[2003-10-28 15:38 UTC] boccara at netvision dot net dot il
[2003-10-28 17:32 UTC] fmk@php.net
[2003-10-29 03:08 UTC] boccara at netvision dot net dot il
[2003-10-29 14:34 UTC] fmk@php.net
[2003-11-20 12:04 UTC] jro at aucotec dot com
[2003-11-20 12:10 UTC] jro at aucotec dot com
[2003-11-20 13:09 UTC] fmk@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 09:00:01 2025 UTC |
Description: ------------ I have upgraded from 4.3.4 RC1 my program works already about 6 month with the latest version of php. the probleme is that the fetch of an sql query return additonal non breaking space as result. this bug is absolutly new, I search in my code hours, and I returned to the 4.3.4 RC1 and everything is Ok now. Reproduce code: --------------- Function dbFetch ($iResult, &$tabColonne) { $iNbCol = 0; $tabColonne = array(); switch (SGBD) { case "MSSQL": $tabColonne = mssql_fetch_array($iResult); if($tabColonne) { $iNbCol = count($tabColonne); } break; } return $iNbCol; }