|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-01-13 13:29 UTC] kalle@php.net
[2009-01-20 20:03 UTC] felipe@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 23:00:01 2025 UTC |
Description: ------------ It seems that the result_type parameter of mssql_fetch_array() is always set to MSSQL_BOTH. Reproduce code: --------------- <?php print_r(mssql_fetch_array($result, MSSQL_ASSOC)); ?> Expected result: ---------------- Array ( [id] => 1 ) Actual result: -------------- Array ( [0] => 1 [id] => 1 )