dmitry Fri Oct 28 03:31:24 2005 EDT Modified files: /php-src/ext/pdo/tests pdo_032.phpt Log: Fixed test (unicode support) http://cvs.php.net/diff.php/php-src/ext/pdo/tests/pdo_032.phpt?r1=1.2&r2=1.3&ty=u Index: php-src/ext/pdo/tests/pdo_032.phpt diff -u php-src/ext/pdo/tests/pdo_032.phpt:1.2 php-src/ext/pdo/tests/pdo_032.phpt:1.3 --- php-src/ext/pdo/tests/pdo_032.phpt:1.2 Wed Oct 26 19:46:52 2005 +++ php-src/ext/pdo/tests/pdo_032.phpt Fri Oct 28 03:31:21 2005 @@ -81,3 +81,50 @@ string(1) "C" } } +--UEXPECT-- +array(3) { + [0]=> + array(2) { + [u"id"]=> + unicode(1) "1" + [u"val"]=> + unicode(1) "A" + } + [1]=> + array(2) { + [u"id"]=> + unicode(1) "2" + [u"val"]=> + unicode(1) "B" + } + [2]=> + array(2) { + [u"id"]=> + unicode(1) "3" + [u"val"]=> + unicode(1) "C" + } +} +array(3) { + [0]=> + array(2) { + [u"ID"]=> + unicode(1) "1" + [u"VAL"]=> + unicode(1) "A" + } + [1]=> + array(2) { + [u"ID"]=> + unicode(1) "2" + [u"VAL"]=> + unicode(1) "B" + } + [2]=> + array(2) { + [u"ID"]=> + unicode(1) "3" + [u"VAL"]=> + unicode(1) "C" + } +}
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php