PHP 7.3 reached EOL on , and all releases of this version no longer receive security or bug fixes. Using PHP 7.3.0RC6 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.0RC6 tag from the PHP Git repository.
git clone https://github.com/php/php-src.git --depth 1 --branch php-7.3.0RC6
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.0RC6-x64NTS.zip (24.02 MiB)
php-7.3.0RC6-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.0RC6-x64TS.zip (24.15 MiB)
php-7.3.0RC6-x86TS.zip (22.40 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.0RC6-cli-alpine
Debian-based: More compatible with other components, complete, and are widely used.
docker pull php:7.3.0RC6-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.0RC6-fpm-alpine
Debian-based ZTS Apache: Includes Apache web server integrating PHP as an Apache module.
docker pull php:7.3.0RC6-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.0RC6-fpm
Commit List
Anatol Belski
- Sync one more upstream libmagic piece in 22f71a66ec
- Rework magic data in 60adea5496
- Fix regex in 9d77bf0978
- Fix regex in 992e4fbc65
- Rework magic data in 0e38909170
- Fork test with pcre.jit=0 in 3fd46e19ac
- Rework magic data once more in 2a062f3c02
- Fixed bug #77111 php-win.exe corrupts unicode symbols from cli parameters in a7e9790969
- Simplify assignment on 64-bit in b0591f5e46
- Add test for bug #77047 in 282a63dace
- Fixed bug #77047 pg_convert has a broken regex for the 'TIME WITHOUT TIMEZONE' data type in 0434141ce9
andy
- FIX #77047: fixes regex for "time" data type in 369c991d5c
Christoph M. Becker
- Fix #77141: Signedness issue in SOAP when precision=-1 in f6079e3c56
- Fix #77147: Fix for 60494 ignores ICONV_MIME_DECODE_CONTINUE_ON_ERROR in a56cdd0a82
- Update version for PHP 7.3.0RC6 in 69895e8ab3
Jan Rękorajski
- Fix compilation on x32 in f76be1a0d6
Nikita Popov
- Fixed bug #77165 in dee5a450d9
Remi Collet
- Fix #77151
ftp_close()
: SSL_read on shutdown in d9afc2f662 - NEWS in 1adbf70e26
- NEWS in e7acb29eb0
- NEWS in 3ed07cc34a
Thiago Carvalho
- Validate length on socket_write in ec2e7a2d48