Heim >Backend-Entwicklung >PHP-Tutorial >PHP4.0.1的变化(一)_PHP

PHP4.0.1的变化(一)_PHP

WBOY
WBOYOriginal
2016-06-01 12:39:23854Durchsuche

说明

一份好长的 changelog 这里好象只有1/3左右吧有些东西我实在是不知道怎么翻只好把洋文留着了。后面括号里是该改动的作者。



1 、修正了一个在修改LDAP是可能引起程序当掉的错误。
(Eric Kilfoil)

2 、修正了一个opendir()的BUG这个BUG可能使得在使用readdir()而没有明确的指出$dir这个参数时不能正常使用的错误。(Zeev)

3 、--enable-discard-path又可以使用了。(Andi)

4 、取消了在使用file
()这个函数时每行8KB的限制。(Zeev)

5 、当PHP作为一个模块运行于多线程的WEB服务器时
不能再使用dl()函数。这个函数以前在这样的情况下也是不能正常工作的。(Zeev)

6 、增加了ImageColorClosestHWB
()ImageCopyMerge()和ImagePaletteCopy()三个函数。(Sterling)

7 、增加了ImageCreateFromWBMP
()函数。(Jouni)

8 、修正了POST请求在NSAPI模块中的问题。
(Roberto Biancardi)

9 、增加了spliti
()函数。(Thies)

10、修正那些在非连续的环境中不能定义类的连续对象的了连续行为。
(Sascha)

11、改善了内存缓存的性能
增加了缓存的大小。(Stas, Zend Engine)

12、增加了CRC32校验功能。此功能用于UdmSearch搜索引擎
谁能告诉我这是什么和系统命令调用。这将大大提高UdmSearch的PHP前端的速度。(Rasmus)

13、修改了in_array
()使之不在与数组指针冲突。(Andrei)

14、Added restore_error_handler
().

14、增加了restore_error_handler
()函数。(Zeev, Zend engine)

15、修正了在多线程版本的PHP中
尤其是WIN32中显示错误的文件名和行数不正确的错误。(Zeev, Zend Engine)

16、修正了CGI会在某些服务器上当掉的问题
特别是WINDOWS版本的APACHE和O'Reilly website。(Andi)

17、增加了Pi3Web SAPI(这又是什么,谁能告诉我)模块。在configure的时候用./configure --with-pi3web打开选项。(Holger; zimpel@t-online.de)

18、增强了WDDX在使用对象时调用__sleep()和__wakeup()的功能。(Andrei)

19、Changed WDDX to serialize arrays as structs only if needed. (Thies)

20、在WIN32下实现max_execution_time功能。(Zeev)

21、strtotime()现在支持更多的格式。这个函数现在完全支持GNU日期命令。(Andrei)

22、增加了unset()对多参数的支持。(Faisal, Zend Engine)

23、那些用错参数(类型错误)的函数原来返回的是FALSE,现在返回NULL。(Thies, Zend Engine)

24、Fixed gmmktime(), on certain systems it incorrectly adjusted for the timezone offset and daylight savings time.

24、修正了gmmktime()。原先这个函数在某些系统上,不能正确的调整时区和夏令时。(Andrei)

25、把VC++ WIN32的project和workspace文件移到了WIN32目录。(Zeev)

26、checkdate()的参数如果不是数字,其返回值为FALSE。(Rasmus)

27、增加了--enable-c9x-inline这个编译选项。该选项支持C9x新标准(这是什么,我还是不知道)。如果在编译时遇到诸如undefined references to i_zend_is_true这样的问题,请打开这个选项。(Sascha, Zend Library)

28、Fixed a problem in ldap_add() and ldap_modify(), sometimes added trailing garbage to the values

28、修正了ldap_add()和ldap_modify()有时会在记录后面加上一些无用信息的错误。(Stig Venaas)

29、修正了dbmopen()在dbm/db/ndbm无法正确取得'
c'的错误。(JimJag)

30、修正了number_format
()会当掉的错误。(Andrei)

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:mcrypt如何加/解密?_PHPNächster Artikel:PHP4.0.1的变化(二)_PHP