PHP 7.3 reached EOL on , and all releases of this version no longer receive security or bug fixes. Using PHP 7.3.0RC5 is not recommended. PHP 7.3.33 is the latest version in the series.
Downloads
Source Code
Git Clone
Use Git to clone the 7.3.0RC5 tag from the PHP Git repository.
git clone https://github.com/php/php-src.git --depth 1 --branch php-7.3.0RC5
How to compile PHP
PHP can be compiled by setting up the dependencies, building the configure script (
Detailed articles on how to compile PHP are available for Ubuntu/Debian based systems and Fedora/RHEL based systems.
./buildconf
), configuring the build ./configure
, and running make
.Detailed articles on how to compile PHP are available for Ubuntu/Debian based systems and Fedora/RHEL based systems.
Windows binaries
Non-Thread Safe Builds
Non-Thread Safe (NTS) builds are single-threaded PHP builds. They can be used on web servers that integrate PHP over FastCGI protocol, such as Nginx, Caddy, and IIS.
php-7.3.0RC5-x64NTS.zip (24.02 MiB)
php-7.3.0RC5-x86NTS.zip (22.33 MiB)
Thread-Safe Builds
Thread-Safe (TS) builds are multi-thread PHP builds, often used to integrate PHP as a Server API for multithreaded servers. The most common use case is using PHP as an Apache module.
php-7.3.0RC5-x64TS.zip (24.15 MiB)
php-7.3.0RC5-x86TS.zip (22.39 MiB)
Docker/Podman Containers
PHP CLI
PHP CLI Containers images only include the PHP CLI, and no FPM or Apache modules. The Alpine builds are lightweight, but may introduce incompatibilities due to their musl builds. Albeit their larger size, the Debian-based (without the "-alpine" suffix) images are more complete, and widely used.
Alpine-based: Lightweight, but may introduce incompatibilities due to their musl builds.
docker pull php:7.3.0RC5-cli-alpine
Debian-based: More compatible with other components, complete, and are widely used.
docker pull php:7.3.0RC5-cli
PHP CLI + Web Server Integration
These container images include PHP CLI, and a web server integration. FPM container images can be integrated with web servers such as Nginx, Caddy, and Apache with Event MPM. The Apache container images include Apache web server, integrating PHP as an Apache module.
Alpine-based: Lightweight, but may introduce incompatibilities due to their musl builds.
docker pull php:7.3.0RC5-fpm-alpine
Debian-based ZTS Apache: Includes Apache web server integrating PHP as an Apache module.
docker pull php:7.3.0RC5-apache
Debian-based NTS FPM: PHP-FPM, can be integrated with Nginx, Caddy, and other web servers over Fast CGI.
docker pull php:7.3.0RC5-fpm
Commit List
Anatol Belski
- Fixed bug #77081
ftruncate()
changes seek pointer in c mode in 8827cc34cf - Fix error condition in ee9d879f57
- Change the way JIT availability is checked in aea411657e
- Rework places in libmagic regarding previous CVE-2014-3538 fixes in 7f5f46013b
- Backport 7f5f4601 for 7.2 in c621182c42
- Implement handling for JIT recognition when cross compiling in 68ad401b34
- Declare function proto in header in 0e33c2822c
- Declare function proto in header in 29dcf19f8b
Cameron Porter
- Fixed bug #50675 in db47e35373
Christoph M. Becker
- Fix #71592: External entity processing never fails in 829b0df77b
- Fix and improve test case in 2816a3fdfa
- Fix #76348: WSDL_CACHE_MEMORY causes Segmentation fault in 625f614cb1
- Fix #76825: Undefined symbols
___cpuid_count
in 7625f972db - Update version for PHP 7.3.0RC5 in dbca024404
Derick Rethans
- Updated to version 2018.6 (2018f) in 41241d109a
- Empty merge in c22b9e0115
- Updated to version 2018.6 (2018f) in c3a8313136
- Updated to version 2018.7 (2018g) in e58388ea6d
- Empty merge in fcefc28ce1
- Updated to version 2018.7 (2018g) in 10255a0cd9
Dmitry Stogov
- Make
php_plain_files_wrapper
to be writable (workaround for swoole) in 770fe51bfd - Fixed reseting of interned strings buffer in 335fb94d54
Joe Watkins
- bump versions in 33fa02ea38
Jon Allen
- fix bug #77079 in 8775bead3a
Nikita Popov
- Improve "narrowing" error message in e7153e8a2f
- Fixed bug #77058 in f1ceec5533
- Don't optimize function if inference failed in b9431ef4d5
- Fix
mb_strrpos()
with encoding passed as 3rd param in 09c7108f74 - Fixed bug #77092 in 4daa413898
Rasmus Lerdorf
- This test needs to log to stdout in 1954c7e1c6
- Fix session tests that fail if error_log is set in 4e8195769d
- Fix stray newline that caused this test to fail in 99a9e85c65
Remi Collet
- bump to 7.2.13-dev in 1d5baf167a
- Fix: #77110 undefined symbol
zend_string_equal_val
in C++ build in d53ecd040b - NEWS in d78479737c
Zeev Suraski
- Future-proof email addresses in 9afce019e0
Υоаnn B
- fix typo in
sysvsem.c
in 5df17425d3