On Wed, 20 Sep 2006, Dmitry Stogov wrote:

> You are right . Extensions should use string/unicode keys (not binary).
> However now you should use add_ascii_assoc_...() functions instead of
> add_assoc_...() to make autoconversion work.
> This is probably the only change that patch makes in extensions.

Actually not, as Antony had to change one of the date tests:

        
http://cvs.php.net/viewvc.cgi/php-src/ext/date/tests/oo_002.phpt?r1=1.3&r2=1.4&diff_format=u
Index: php-src/ext/date/tests/oo_002.phpt
diff -u php-src/ext/date/tests/oo_002.phpt:1.3 
php-src/ext/date/tests/oo_002.phpt:1.4
--- php-src/ext/date/tests/oo_002.phpt:1.3      Tue Aug 29 22:24:23 2006
+++ php-src/ext/date/tests/oo_002.phpt  Tue Sep 19 11:26:53 2006
@@ -31,5 +31,5 @@
 unicode(29) "Tue, 01 Aug 06 13:00:00 +0000"
 unicode(29) "Tue, 01 Aug 06 14:00:00 +0000"
 unicode(29) "Tue, 01 Aug 06 12:59:59 +0000"
-unicode(10) "Asia/Tokyo"
-unicode(10) "Asia/Tokyo"
+string(10) "Asia/Tokyo"
+string(10) "Asia/Tokyo"

So it seems that something is going wrong still?

regards,
Derick

-- 
Derick Rethans
http://derickrethans.nl | http://ez.no | http://xdebug.org

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to