PHP

PHP 5.5.15

,

Открытый язык PHP

Дата публикации:

ЭЖД, 14.06.2005 - 14:31

user posted image

ph34r.gif PHP 5.1

Представлен первый бета-релиз новой версии открытого языка PHP — 5.1.
Среди новшеств в PHP 5.1:
— PDO (PHP Data Objects) — новая абстрактная прослойка (abstraction layer) для работы с БД (обещается высокая производительность, простота использования и гибкость);
— значительные улучшения в производительности (в т.ч. новая архитектура исполнения Zend Engine II);
— расширение регулярных выражений PCRE обновлено до PCRE 5.0;
— многочисленные улучшения, новые возможности и исправления ошибок (особенно в областях SOAP, потоков и SPL).

Home_http://ru.php.net

SpiderX, 28.06.2005 - 11:42

Настройка PHP 5.1 под Win

1) Качаем пакет PHP (8-ми меговый)
2) Качаем пакет PECL модулей.
3) Распаковываем PECL в папку \ext где установлен PHP.
4) Редактируем в php.ini параметр extension_dir (записываем полный путь до каталога \ext, например, extension_dir = "c:\Apache\php\ext\")
5) Заменяем блок Dynamic Extensions на такой:
CODE
extension=php_adt.dll
extension=php_apd.dll
extension=php_bz2.dll
extension=php_bz2_filter.dll
extension=php_classkit.dll
extension=php_cpdf.dll
extension=php_crack.dll
extension=php_cvsclient.dll
extension=php_db.dll
extension=php_dba.dll
extension=php_dbase.dll
extension=php_dbx.dll
extension=php_dio.dll
extension=php_event.dll
extension=php_ffi.dll
extension=php_filepro.dll
extension=php_gd2.dll
extension=php_gettext.dll
extension=php_gopher.dll
extension=php_hyperwave.dll
extension=php_id3.dll
extension=php_iisfunc.dll
extension=php_imap.dll
extension=php_java.dll
extension=php_lzf.dll
extension=php_mbstring.dll
extension=php_memcache.dll
extension=php_mime_magic.dll
extension=php_ming.dll
extension=php_ntuser.dll
extension=php_oggvorbis.dll
extension=php_parsekit.dll
extension=php_pdf.dll
extension=php_pdo_odbc.dll
extension=php_pdo_pgsql.dll
extension=php_pdo_sqlite.dll
extension=php_pgsql.dll
extension=php_phpdoc.dll
extension=php_pop3.dll
extension=php_printer.dll
extension=php_radius.dll
extension=php_shmop.dll
extension=php_smtp.dll
extension=php_snmp.dll
extension=php_soap.dll
extension=php_sockets.dll
extension=php_tidy.dll
extension=php_translit.dll
extension=php_win32scheduler.dll
extension=php_win32service.dll
extension=php_win32std.dll
extension=php_xmlreader.dll
extension=php_xmlrpc.dll
extension=php_xmlwriter.dll
extension=php_xsl.dll
extension=php_zip.dll
extension=php_zlib_filter.dll

P.S. всё что написано касается PHP 5.1.0 beta 3.

SpiderX, 15.07.2005 - 7:18

PHP 4.4.0

Complete Source Code
PHP 4.4.0 (tar.bz2) [3,990Kb]
_http://www.php.net/ge.../from/a/mirror
PHP 4.4.0 (tar.gz) [4,856Kb]
_http://www.php.net/ge.../from/a/mirror

Windows Binaries
PHP 4.4.0 zip package [6,807Kb]
_http://www.php.net/ge.../from/a/mirror
PHP 4.4.0 installer [1,100Kb]
_http://www.php.net/ge.../from/a/mirror

Источник:
_http://www.php.net/downloads.php

SpiderX, 17.07.2005 - 18:34

PHP 5.1.0 RC1

PHP 5.1.0RC1 (tar.bz2) [5,849Kb]
_http://www.php.net/ge.../from/a/mirror
PHP 5.1.0RC1 (tar.gz) [7,373Kb]
_http://www.php.net/ge.../from/a/mirror

PHP 5.1.0RC1 zip package [8,298Kb]
_http://www.php.net/ge.../from/a/mirror
Collection of PECL modules for PHP 5.1.0RC1 [1,421Kb]
_http://www.php.net/ge.../from/a/mirror

SpiderX, 18.07.2005 - 14:01

PHP 5 решение проблем

Бывает, что после установки PHP 5 полностью рабочие скрипты не работают. Обычно (95% случаев) на работоспособность влияют две опции php.ini:
CODE
register_globals = Off
short_open_tag = Off

Первая опция запрещает использовать глобальные переменные (запрет появился в PHP 5, для повышения безопасности), вторая запрещает использовать короткие тэги (вместо ) В редких случаях мешает опция
CODE
register_long_arrays = Off

Можно заранее после установки задать значение On всем вышеперечисленным параметрам.

ЭЖД, 7.09.2005 - 13:39

ph34r.gif PHP-5.0.5

В основном исправление багов и дыр в безопасности, включая уязвимость, найденную в пакете XMLRPC.

changelog_http://www.php.net/ChangeLog-5.php#5.0.5
Downloads (~5.9 Mb)_http://ru2.php.net/ge...php.net/mirror

tR.1.P., 7.09.2005 - 19:25

А некоторые скрипты написанные для 4 версии на 5 не работают. По этому на большенстве серверо до сих пор стоит 4.

DarkWire, 17.09.2005 - 17:28

Я являюсь администратором Игровой Зоны и с переходом на PHP 5 возникло 2 проблемы, которые вынудили обратно уйти на PHP 4.4.0:

1. Не работает мониторинг Counter-Strike
2. Не работает online игра Легенда о Зеленом Драконе

SpiderX, 17.09.2005 - 19:26

Ничего удивительного нет. Перепортируй скрипты под пятую версию и всё будет ОК. Конечно возня, но imho дело того стоит. Тем более кодовые различия будут не такие уж и большие.

ЭЖД, 1.11.2005 - 21:42

ph34r.gif PHP 4.4.1

Обнаружено несколько неприятных проблем с безопасностью в версиях PHP ниже 4.4.1 и 5.0.6 (который еще не вышел).

Проблемы:
Возможность (при register_globals=on) подмены значений в массиве "GLOBALS" через "multipart/form-data" запрос или функции extract(), import_request_variables();
Ошибка в функции parse_str(), которая может привести к активации настройки register_globals;
"Cross-Site Scripting" - атакующий может сформировать ссылку на скрипт с phpinfo(), подставив свой HTML код;
Возможность выхода за пределы директории, заданной в open_basedir и safe_mode, через модули "ext/curl" и "ext/gd" или вызов virtual() под apache 2 SAPI;
Целочисленное переполнение в pcrelib;
Исправлено более 30 ошибок не касающихся безопасности.

ChangeLog_http://www.php.net/ChangeLog-4.php#4.4.1
Downloads (~4.0 Mb)_http://www.php.net/ge.../from/a/mirror

ЭЖД, 27.11.2005 - 3:42

ph34r.gif PHP 5.1.0

Вышел первый официальный релиз PHP 5.1. Пользователям PHP 5.0 рекомендуется срочно обновиться, так как в PHP 5.1 исправлен ряд серьезных ошибок связанных с безопасностью.

Из новых возможностей можно отметить:
Полностью переписан код работы с датами и временем.
Проведена значительная оптимизация производительности, скорость некоторых операций, по сравнению с 4.4 и 5.0, увеличилась почти в 4 раза !
PDO (PHP Data Objects) расширение теперь активно по умолчанию;
Около 30 новых функций;
Библиотеки PCRE и SQLite обновлены до последний версий;
Исправлено около 400 ошибок;
PEAR обновлен до версии 1.4.5.

ChangeLog PHP 5.1.0_http://www.php.net/ChangeLog-5.php#5.1.0
UPGRADE NOTES_http://www.php.net/README_UPGRADE_51.php
Complete Source Code (~6.0 Mb)_http://ru.php.net/dis...-5.1.0.tar.bz2
Windows Binaries:
zip package (~8.4 Mb)_http://ru.php.net/dis....1.0-Win32.zip
installer (~2.5 Mb)_http://ru.php.net/dis...-installer.exe

ЭЖД, 3.12.2005 - 4:16

ph34r.gif PHP 5.1.1

В новом релизе PHP 5.1 были обнаружены серьёзные ошибки, поэтому всем рекомендуют обновиться.
* Native date class is withdrawn to prevent namespace conflict with PEAR's date package.
* Fixed fatal parse error when the last line of the script is a PHP comment.
* eval() hangs when the code being evaluated ends with a comment.
* Usage of \{$var} in PHP 5.1.0 resulted in the output of {$var} instead of the $var variable's value enclosed in {}.
* Fixed inconsistency in the format of PHP_AUTH_DIGEST between Apache 1 and 2 sapis.
* Improved safe_mode/open_basedir checks inside the cURL extension.

ChangeLog_http://www.php.net/ChangeLog-5.php#5.1.1
Source Code (~5.9 Mb)_http://ru.php.net/dis...-5.1.1.tar.bz2
Windows Binaries
zip (~8.6 Mb)_http://ru.php.net/dis....1.1-Win32.zip
exe (~2.5 Mb)_http://ru.php.net/dis...-installer.exe

ЭЖД, 13.01.2006 - 14:22

ph34r.gif PHP 5.1.2

Из новшеств может отметить:
Помещение в состав поставки PHP расширений "hash" и XMLWriter.
В интерфейс к библиотеке GD добавлена возможность генерации PNG в сжатом виде.
SQLite библиотека обновлена с версии 2.8.17 до 3.2.8.
В бинарную версию для платформы Win32 включены библиотеки libxml2-2.6.22 и libxslt-1.1.15.

ChangeLog_http://www.php.net/ChangeLog-5.php#5.1.2
Downloads (~6,1 Mb)_http://ru2.php.net/ge...php.net/mirror

de1ay, 8.05.2006 - 7:16

PHP v5.1.4

Changelog:
http://www.php.net/ChangeLog-5.php#5.1.4


user posted image
Complete Source Code

PHP 5.1.4 (tar.bz2) [5,852Kb]:
http://www.php.net/ge.../from/a/mirror

PHP 5.1.4 (tar.gz) [7,415Kb]:
http://www.php.net/ge.../from/a/mirror

Windows Binaries

.EXE
Link(~2,6mb):
http://cn.php.net/dis...-installer.exe

.ZIP
Link(~9mb):
http://www.php.net/ge.../from/a/mirror

ЭЖД, 26.08.2006 - 17:01

ph34r.gif PHP 5.1.6

Исправлены ошибки, связанные с безопасностью. Разработчики рекомендуют обновиться как можно скорее.

Complete Source Code (~6,3 Mb)_http://ru.php.net/get...om/this/mirror
Windows Binaries (~9,2 Mb)_http://www.php.net/ge.../from/a/mirror

ЭЖД, 8.11.2006 - 21:10

ph34r.gif PHP 5.2.0

Вышла новая версия PHP - 5.2.0 В ней исправлено около 200 ошибок, оптимизировано выполнение многих функций, улучшенны OpenSSL, SNMP, CURL,PCRE, PDO расширения и добавлено ZIP расширение.
Оптимизирован менеджер памяти Zend, добавилась возможность его тонкой настройки. Также оптимизирован FastCGI SAPI.
Обновлены многие библиотеки для версии под Windows.

Source Code (~6,6 Mb)_http://www.php.net/ge.../from/a/mirror
Windows Binaries (~9,4 Mb)_http://ru2.php.net/ge...om/this/mirror

Strelok-AC, 19.11.2006 - 22:59

PHP 5.20 Installer for Windows


http://ru.php.net/dis...-installer.msi

ЭЖД, 17.03.2007 - 21:46

ph34r.gif PHP 5.2.1


Linux (~6,9 Mb)_http://ru.php.net/dis...-5.2.1.tar.bz2
Windows installer (~19,5 Mb)_http://ru.php.net/dis...-installer.msi
Windows zip package (~9,5 Mb)_http://ru.php.net/dis....2.1-Win32.zip

ЭЖД, 5.05.2007 - 12:34

ph34r.gif PHP 5.2.2


linux (~7,0 Mb)_http://ru.php.net/get...php.net/mirror
Windows installer (~22 Mb)_http://ru.php.net/get...php.net/mirror
Windows zip package (~9,7 Mb)_http://ru.php.net/get...php.net/mirror

ЭЖД, 2.06.2007 - 10:44

ph34r.gif PHP 5.2.3

Security Fixes
Fixed an integer overflow inside chunk_split() (by Gerhard Wagner, CVE-2007-2872)
Fixed possible infinite loop in imagecreatefrompng. (by Xavier Roche, CVE-2007-2756)
Fixed ext/filter Email Validation Vulnerability (MOPB-45 by Stefan Esser, CVE-2007-1900)
Fixed bug #41492 (open_basedir/safe_mode bypass inside realpath()) (by bugs dot php dot net at chsc dot dk)
Improved fix for CVE-2007-1887 to work with non-bundled sqlite2 lib.
Added mysql_set_charset() to allow runtime altering of connection encoding.
Changed CGI install target to php-cgi and 'make install' to install CLI when CGI is selected. (Jani)
Changed JSON maximum nesting depth from 20 to 128. (Rasmus)
Improved compilation of heredocs and interpolated strings. (Matt, Dmitry)
Optimized out a couple of per-request syscalls. (Rasmus)
Optimized digest generation in md5() and sha1() functions. (Ilia)
Upgraded bundled SQLite 3 to version 3.3.17. (Ilia)
Addded "max_input_nesting_level" php.ini option to limit nesting level of input variables. Fix for MOPB-03-2007. (Stas)
Added a 4th parameter flag to htmlspecialchars() and htmlentities() that makes the function not encode existing html entities. (Ilia)
Added PDO::FETCH_KEY_PAIR mode that will fetch a 2 column result set into an associated array. (Ilia)
Added CURLOPT_TIMEOUT_MS and CURLOPT_CONNECTTIMEOUT_MS cURL constants. (Sara)
Added --ini switch to CLI that prints out configuration file names. (Marcus)
Implemented FR Fixed bug #41416 (getColumnMeta() should also return table name). (Tony)
Fixed filetype() and linkinfo() processing of symlinks on ZTS systems. (Oliver Block, Tony, Dmitry)
Fixed SOAP extension's handler() to work even when "always_populate_raw_post_data" is off. (Ilia)
Fixed altering $this via argument named "this". (Dmitry)
Fixed PHP CLI usage of php.ini from the binary location. (Hannes)
Fixed segfault in strripos(). (Tony, Joxean Koret)
Fixed gd build when used with freetype 1.x (Pierre, Tony)
Fixed bug #41525 (ReflectionParameter::getPosition() not available). (Marcus)
Fixed bug #41511 (Compile failure under IRIX 6.5.30 building md5.c). (Jani)
Fixed bug #41504 (json_decode() incorrectly decodes JSON arrays with empty string keys). (Ilia)
Fixed bug #41477 (no arginfo about SoapClient::__soapCall()). (Ilia)
Fixed bug #41455 (ext/dba/config.m4 pollutes global $LIBS and $LDFLAGS). (mmarek at suse dot cz, Tony)
Fixed bug #41442 (imagegd2() under output control). (Tony)
Fixed bug #41430 (Fatal error with negative values of maxlen parameter of file_get_contents()). (Tony)
Fixed bug #41423 (PHP assumes wrongly that certain ciphers are enabled in OpenSSL). (Pierre)
Fixed bug #41421 (Uncaught exception from a stream wrapper segfaults). (Tony, Dmitry)
Fixed bug #41403 (json_decode cannot decode floats if localeconv decimal_point is not '.'). (Tony)
Fixed bug #41401 (wrong unary operator precedence). (Stas)
Fixed bug #41394 (dbase_create creates file with corrupted header). (Tony)
Fixed bug #41390 (Clarify error message with invalid protocol scheme). (Scott)
Fixed bug #41378 (fastcgi protocol lacks support for Reason-Phrase in "Status:" header). (anight at eyelinkmedia dot com, Dmitry)
Fixed bug #41374 (whole text concats values of wrong nodes). (Rob)
Fixed bug #41358 (configure cannot determine SSL lib with libcurl >= 7.16.2). (Mike)
Fixed bug #41353 (crash in openssl_pkcs12_read() on invalid input). (Ilia)
Fixed bug #41351 (Invalid opcode with foreach ($a[] as $b)). (Dmitry, Tony)
Fixed bug #41347 (checkdnsrr() segfaults on empty hostname). (Scott)
Fixed bug #41337 (WSDL parsing doesn't ignore non soap bindings). (Dmitry)
Fixed bug #41326 (Writing empty tags with Xmlwriter::WriteElement[ns]) (Pierre)
Fixed bug #41321 (downgrade read errors in getimagesize() to E_NOTICE). (Ilia)
Fixed bug #41304 (compress.zlib temp files left). (Dmitry)
Fixed bug #41293 (Fixed creation of HTTP_RAW_POST_DATA when there is no default post handler). (Ilia)
Fixed bug #41291 (FastCGI does not set SO_REUSEADDR). (fmajid at kefta dot com, Dmitry)
Fixed bug #41287 (Namespace functions don't allow xmlns definition to be optional). (Rob)
Fixed bug #41283 (Bug with deserializing array key that are doubles or floats in wddx). (Ilia)
Fixed bug #41257 (lookupNamespaceURI does not work as expected). (Rob)
Fixed bug #41236 (Regression in timeout handling of non-blocking SSL connections during reads and writes). (Ilia)
Fixed bug #41134 (zend_ts_hash_clean not thread-safe). (marco dot cova at gmail dot com, Tony)
Fixed bug #41097 (ext/soap returning associative array as indexed without using WSDL). (Dmitry)
Fixed bug #41004 (minOccurs="0" and null class member variable). (Dmitry)
Fixed bug #39542 (Behavior of require/include different to < 5.2.0). (Dmitry)

Linux (~7,2 Mb)_http://ru.php.net/dis...-5.2.3.tar.bz2
Windows installer (~21,9 Mb)_http://ru.php.net/dis...-installer.msi
Windows zip package (~9,6 Mb)_http://ru.php.net/dis....2.3-Win32.zip

ЭЖД, 1.09.2007 - 9:42

ph34r.gif PHP 5.2.4

Security Enhancements and Fixes in PHP 5.2.4:
Fixed a floating point exception inside wordwrap() (Reported by Mattias Bengtsson)
Fixed several integer overflows inside the GD extension (Reported by Mattias Bengtsson)
Fixed size calculation in chunk_split() (Reported by Gerhard Wagner)
Fixed integer overflow in str[c]spn(). (Reported by Mattias Bengtsson)
Fixed money_format() not to accept multiple %i or %n tokens. (Reported by Stanislav Malyshev)
Fixed zend_alter_ini_entry() memory_limit interruption vulnerability. (Reported by Stefan Esser)
Fixed INFILE LOCAL option handling with MySQL extensions not to be allowed when open_basedir or safe_mode is active. (Reported by Mattias Bengtsson)
Fixed session.save_path and error_log values to be checked against open_basedir and safe_mode (CVE-2007-3378) (Reported by Maksymilian Arciemowicz)
Fixed a possible invalid read in glob() win32 implementation (CVE-2007-3806) (Reported by shinnai)
Fixed a possible buffer overflow in php_openssl_make_REQ (Reported by zatanzlatan at hotbrev dot com)
Fixed an open_basedir bypass inside glob() function (Reported by dr at peytz dot dk)
Fixed a possible open_basedir bypass inside session extension when the session file is a symlink (Reported by c dot i dot morris at durham dot ac dot uk)
Improved fix for MOPB-03-2007.
Corrected fix for CVE-2007-2872.

Linux (~7,4 Mb)_http://ru.php.net/dis...-5.2.4.tar.bz2
Windows Installer (~22 Mb)_http://ru.php.net/dis...-installer.msi
Windows zip package (~9,7 Mb)_http://www.php.net/di....2.4-Win32.zip

scorpio, 13.11.2007 - 0:38

PHP 5.2.5


08-November-2007

Security Fixes
-Fixed dl() to only accept filenames. reported by Laurent Gaffie.
-Fixed dl() to limit argument size to MAXPATHLEN (CVE-2007-4887).
-Fixed htmlentities/htmlspecialchars not to accept partial multibyte sequences.
-Fixed possible triggering of buffer overflows inside glibc implementations of the fnmatch(), setlocale() and glob() functions. Reported by Laurent Gaffie.
-Fixed "mail.force_extra_parameters" php.ini directive not to be modifiable in .htaccess due to the security implications reported by SecurityReason.
-Fixed bug #42869 (automatic session id insertion adds sessions id to non-local forms).
-Fixed bug #41561 (Values set with php_admin_* in httpd.conf can be overwritten with ini_set()).

Upgraded PCRE to version 7.3 (Nuno)
Added optional parameter $provide_object to debug_backtrace(). (Sebastian)
Added alpha support for imagefilter() IMG_FILTER_COLORIZE. (Pierre)
Added ability to control memory consumption between request using ZEND_MM_COMPACT environment variable. (Dmitry)
Improved speed of array_intersect_key(), array_intersect_assoc(), array_uintersect_assoc(), array_diff_key(), array_diff_assoc() and array_udiff_assoc(). (Dmitry)
Fixed move_uploaded_file() to always set file permissions of resulting file according to UMASK. (Andrew Sitnikov)
Fixed possible crash in ext/soap because of uninitialized value. (Zdash Urf)
Fixed regression in glob() when enforcing safe_mode/open_basedir checks on paths containing '*'. (Ilia)
Fixed PDO crash when driver returns empty LOB stream. (Stas)
Fixed iconv_*() functions to limit argument sizes as workaround to libc bug (CVE-2007-4783, CVE-2007-4840 by Laurent Gaffie). (Christian Hoffmann, Stas)
Fixed missing brackets leading to build warning and error in the log. Win32 code. (Andrey)
Fixed leaks with multiple connects on one mysqli object. (Andrey)
Fixed endianness detection on MacOS when building universal binary. (Uwe Schindler, Christian Speich, Tony)
Fixed imagerectangle regression with 1x1 rectangle (libgd #106). (Pierre)
Fixed bug #43196 (array_intersect_assoc() crashes with non-array input). (Jani)
Fixed bug #43139 (PDO ignores ATTR_DEFAULT_FETCH_MODE in some cases with fetchAll()). (Ilia)
Fixed bug #43137 (rmdir() and rename() do not clear statcache). (Jani)
Fixed bug #43130 (Bound parameters cannot have - in their name). (Ilia)
Fixed bug #43099 (XMLWriter::endElement() does not check # of params). (Ilia)
Fixed bug #43020 (Warning message is missing with shuffle() and more than one argument). (Scott)
Fixed bug #42976 (Crash when constructor for newInstance() or newInstanceArgs() fails) (Ilia)
Fixed bug #42943 (ext/mssql: Move *timeout initialization from RINIT to connect time). (Ilia)
Fixed bug #42917 (PDO::FETCH_KEY_PAIR doesn't work with setFetchMode). (Ilia)
Fixed bug #42890 (Constant "LIST" defined by mysqlclient and c-client). (Andrey)
Fixed bug #42818 ($foo = clone(array()); leaks memory). (Dmitry)
Fixed bug #42817 (clone() on a non-object does not result in a fatal error). (Ilia)
Fixed bug #42785 (json_encode() formats doubles according to locale rather then following standard syntax). (Ilia)
Fixed bug #42783 (pg_insert() does not accept an empty list for insertion). (Ilia)
Fixed bug #42773 (WSDL error causes HTTP 500 Response). (Dmitry)
Fixed bug #42772 (Storing $this in a static var fails while handling a cast to string). (Dmitry)
Fixed bug #42767 (highlight_string() truncates trailing comment). (Ilia)
Fixed bug #42739 (mkdir() doesn't like a trailing slash when safe_mode is enabled). (Ilia)
Fixed bug #42703 (Exception raised in an iterator::current() causes segfault in FilterIterator) (Marcus)
Fixed bug #42699 (PHP_SELF duplicates path). (Dmitry)
Fixed bug #42654 (RecursiveIteratorIterator modifies only part of leaves) (Marcus)
Fixed bug #42643 (CLI segfaults if using ATTR_PERSISTENT). (Ilia)
Fixed bug #42637 (SoapFault : Only http and https are allowed). (Bill Moran)
Fixed bug #42629 (Dynamically loaded PHP extensions need symbols exported on MacOSX). (jdolecek at NetBSD dot org)
Fixed bug #42627 (bz2 extension fails to build with -fno-common). (dolecek at netbsd dot org)
Fixed bug #42596 (session.save_path MODE option does not work). (Ilia)
Fixed bug #42590 (Make the engine recognize \v and \f escape sequences). (Ilia)
Fixed bug #42587 (behavior change regarding symlinked .php files). (Dmitry)
Fixed bug #42579 (apache_reset_timeout() does not exist). (Jani)
Fixed bug #42549 (ext/mysql failed to compile with libmysql 3.23). (Scott)
Fixed bug #42523 (PHP_SELF duplicates path). (Dmitry)
Fixed bug #42512 (ip2long('255.255.255.255') should return 4294967295 on 64-bit PHP). (Derick)
Fixed bug #42506 (php_pgsql_convert() timezone parse bug) (nonunnet at gmail dot com, Ilia)
Fixed bug #42462 (Segmentation when trying to set an attribute in a DOMElement). (Rob)
Fixed bug #42453 (CGI SAPI does not shut down cleanly with -i/-m/-v cmdline options). (Dmitry)
Fixed bug #42452 (PDO classes do not expose Reflection API information). (Hannes)
Fixed bug #42468 (Write lock on file_get_contents fails when using a compression stream). (Ilia)
Fixed bug #42488 (SoapServer reports an encoding error and the error itself breaks). (Dmitry)
Fixed bug #42378 (mysqli_stmt_bind_result memory exhaustion). (Andrey)
Fixed bug #42359 (xsd:list type not parsed). (Dmitry)
Fixed bug #42326 (SoapServer crash). (Dmitry)
Fixed bug #42214 (SoapServer sends clients internal PHP errors). (Dmitry)
Fixed bug #42189 (xmlrpc_set_type() crashes php on invalid datetime values). (Ilia)
Fixed bug #42139 (XMLReader option constants are broken using XML()). (Rob)
Fixed bug #42086 (SoapServer return Procedure '' not present for WSIBasic compliant wsdl). (Dmitry)
Fixed bug #41822 (Relative includes broken when getcwd() fails). (Ab5602, Jani)
Fixed bug #39651 (proc_open() append mode doesn't work on windows). (Nuno)

_______________
Size: ~ 20.04 MB

Download:

PHP 5.2.5 (tar.bz2) [7,591Kb] - 08 November 2007
http://php.net/distri...-5.2.5.tar.bz2

PHP 5.2.5 (tar.gz) [9,739Kb] - 08 November 2007
http://php.net/distri...p-5.2.5.tar.gz

PHP 5.2.5 zip package [9,713Kb] - 08 November 2007
http://php.net/distri....2.5-Win32.zip

PHP 5.2.5 installer [20,521Kb] - 08 November 2007
http://php.net/distri...-installer.msi

PECL 5.2.5 Win32 binaries [2,879Kb] - 08 November 2007
http://php.net/distri....2.5-Win32.zip

PHP 5.2.5 Non-thread-safe Win32 binaries [9,619Kb] - 08 November 2007
http://php.net/distri...-nts-Win32.zip

PECL 5.2.5 Non-thread-safe Win32 binaries [4,114Kb] - 08 November 2007
http://php.net/distri...-nts-Win32.zip

scorpio, 12.06.2009 - 10:03

PHP 5.3.0 RC3

_______________
Size: ~ 9.53 MB

Download:

scorpio, 20.11.2009 - 20:53

PHP 5.3.1

» What's New in version 5.3.1 «


_______________
Size: ~ 14.19 MB

Download:

ЭЖД, 27.02.2010 - 20:08

ph34r.gif PHP 5.2.13

В новой версии исправлено 38 ошибок и устранено несколько уязвимостей:
Downloads (~8,7 Mb)_http://ru2.php.net/ge...om/this/mirror

ЭЖД, 4.03.2010 - 19:58

ph34r.gif php 5.3.2

» ChangeLog «


Downloads (~10,0 Mb)_http://us2.php.net/di...-5.3.2.tar.bz2

Урсу, 17.08.2013 - 13:18

PHP 5.5.2

» Нажмите, для открытия спойлера | Press to open the spoiler «

PHP 5.5.2 (tar.bz2)
Размер: 11,72 МБ.
Скачать:


Windows:
Non Thread Safe:
x86
Размер: 17,76 МБ.
Скачать:

x64
Размер: 18,97 МБ.
Скачать:

Thread Safe:
x86
Размер: 17,84 МБ.
Скачать:

x64
Размер: 19,07 МБ.
Скачать:

Урсу, 24.07.2014 - 14:37

PHP 5.5.15

» Changelog: «

PHP 5.5.15 (tar.bz2)
Размер: 12,63 МБ.
Скачать:


Windows:
Non Thread Safe:
x86
Размер: 18,51 МБ.
Скачать:

x64
Размер: 19,80 МБ.
Скачать:

Thread Safe:
x86
Размер: 18,58 МБ.
Скачать:

x64
Размер: 19,93 МБ.
Скачать:


версия для печати -> Полная версия

SoftoRooM © 2004-2024