|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-06-22 04:09 UTC] ssufficool@php.net
[2010-06-22 04:11 UTC] ssufficool@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: ssufficool
[2010-06-22 04:11 UTC] ssufficool@php.net
[2023-01-22 16:09 UTC] xamres dot com at gmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 16:00:01 2025 UTC |
Description: ------------ pdo_dblib is not returning the correct string length after converting the data. Test script: --------------- $row = $stmt->fetch(PDO::FETCH_ASSOC); var_dump($row); Expected result: ---------------- array(2) { ["id"]=> string(2) "13" ["flag"]=> string(1) "0" } Actual result: -------------- array(2) { ["id"]=> string(40) "13 " ["flag"]=> string(40) "0 " }