The PHP Interpreter
Go to file
2024-08-13 14:10:06 +02:00
.circleci Merge branch 'PHP-8.3' 2024-05-02 19:53:43 +02:00
.github Merge branch 'PHP-8.3' 2024-08-12 16:21:35 +02:00
benchmark Add a check for required extensions in benchmark.php (#14811) 2024-07-16 19:37:20 +02:00
build Autotools: Wrap long texts with m4_text_wrap (#15368) 2024-08-13 10:33:17 +02:00
docs [ci skip] Update release process for pre-GA (#14988) 2024-07-17 17:55:03 +03:00
docs-old Autotools: Normalize and quote all PHP_NEW_EXTENSION arguments (#15144) 2024-07-29 00:14:59 +02:00
ext ext/standard/filters.c: Use zend_result return type instead of int 2024-08-13 14:10:06 +02:00
main Show build provider and unify version information printing (#14657) 2024-08-12 23:24:41 -03:00
pear Update PEAR failed download installation banner (#14216) 2024-05-13 19:01:05 +02:00
sapi Autotools: Fix phpdbg build (#15373) 2024-08-13 10:35:16 +02:00
scripts Remove redundant middle newlines in "Autotools" related files 2024-08-12 13:18:32 +02:00
tests ext/core: Deprecate passing E_USER_ERROR to trigger_error() (#15308) 2024-08-09 15:51:07 +01:00
travis ext/openssl: Remove kerberos support 2024-03-23 15:12:06 +00:00
TSRM Autotools: Simplify POSIX Threads check (#14855) 2024-07-07 22:44:44 +02:00
win32 Support somewhat recent clang versions on Windows (GH-15324) 2024-08-10 20:57:53 +02:00
Zend [skip ci] Remove unclosed vim code folding 2024-08-12 18:50:38 +02:00
.cirrus.yml ext/openssl: Remove kerberos support 2024-03-23 15:12:06 +00:00
.editorconfig Fix JIT crash with large number of match/switch arms (#8961) 2022-07-18 12:34:20 +02:00
.gdbinit Merge branch 'PHP-8.2' into PHP-8.3 2024-01-23 12:55:47 +01:00
.gitattributes Inline GDB scripts in the PHP binary (#13600) 2024-04-16 15:10:01 +02:00
.gitignore Make ext/fileinfo/generate_patch.sh simpler to use (#14941) 2024-07-13 22:38:43 +02:00
.travis.yml ext/openssl: Remove kerberos support 2024-03-23 15:12:06 +00:00
buildconf Fix Autoconf check for development versions (#11532) 2023-07-18 17:54:00 +02:00
buildconf.bat Fix #79146: cscript can fail to run on some systems 2020-01-21 11:53:11 +01:00
codecov.yml Implement CSS selectors 2024-06-29 13:00:26 -07:00
CODING_STANDARDS.md [ci skip] Clarify usage of C99 standard (#14993) 2024-07-18 11:40:58 +02:00
configure.ac Autotools: Wrap long texts with m4_text_wrap (#15368) 2024-08-13 10:33:17 +02:00
CONTRIBUTING.md [ci skip] Update contributing guidelines for docs (#14528) 2024-06-09 23:21:47 +01:00
EXTENSIONS Update dates of my mbstring maintainership in EXTENSIONS 2024-06-29 17:28:36 +02:00
LICENSE Update year to 2024 2024-01-04 19:26:32 +01:00
NEWS ext/sockets: adding SOCK_CLOEXEC/SOCK_NONBLOCK options. 2024-08-13 08:35:44 +01:00
php.ini-development session: Deprecate session.sid_length and session.sid_bits_per_character (#15213) 2024-08-04 18:25:31 +02:00
php.ini-production session: Deprecate session.sid_length and session.sid_bits_per_character (#15213) 2024-08-04 18:25:31 +02:00
README.md Update http links to https and sync www.php.net URLs (#14854) 2024-07-07 04:23:08 +02:00
README.REDIST.BINS hash: Add SHA-NI implementation of SHA-256 (#15152) 2024-08-08 22:19:33 +02:00
run-tests.php Update http links to https and sync www.php.net URLs (#14854) 2024-07-07 04:23:08 +02:00
SECURITY.md Move most of this to https://github.com/php/policies as per Policies RFC 2024-01-30 17:31:55 +00:00
UPGRADING Deprecate Soft-deprecated DOMDocument and DOMEntity properties (#15369) 2024-08-13 12:39:20 +01:00
UPGRADING.INTERNALS Change YIELD/YIELD_FROM to do not increment opline (#15328) 2024-08-10 16:09:47 +02:00

The PHP Interpreter

PHP is a popular general-purpose scripting language that is especially suited to web development. Fast, flexible and pragmatic, PHP powers everything from your blog to the most popular websites in the world. PHP is distributed under the PHP License v3.01.

Push Build status Fuzzing Status

Documentation

The PHP manual is available at php.net/docs.

Installation

Prebuilt packages and binaries

Prebuilt packages and binaries can be used to get up and running fast with PHP.

For Windows, the PHP binaries can be obtained from windows.php.net. After extracting the archive the *.exe files are ready to use.

For other systems, see the installation chapter.

Building PHP source code

For Windows, see Build your own PHP on Windows.

For a minimal PHP build from Git, you will need autoconf, bison, and re2c. For a default build, you will additionally need libxml2 and libsqlite3.

On Ubuntu, you can install these using:

sudo apt install -y pkg-config build-essential autoconf bison re2c \
                    libxml2-dev libsqlite3-dev

On Fedora, you can install these using:

sudo dnf install re2c bison autoconf make libtool ccache libxml2-devel sqlite-devel

Generate configure:

./buildconf

Configure your build. --enable-debug is recommended for development, see ./configure --help for a full list of options.

# For development
./configure --enable-debug
# For production
./configure

Build PHP. To speed up the build, specify the maximum number of jobs using -j:

make -j4

The number of jobs should usually match the number of available cores, which can be determined using nproc.

Testing PHP source code

PHP ships with an extensive test suite, the command make test is used after successful compilation of the sources to run this test suite.

It is possible to run tests using multiple cores by setting -jN in TEST_PHP_ARGS:

make TEST_PHP_ARGS=-j4 test

Shall run make test with a maximum of 4 concurrent jobs: Generally the maximum number of jobs should not exceed the number of cores available.

The qa.php.net site provides more detailed info about testing and quality assurance.

Installing PHP built from source

After a successful build (and test), PHP may be installed with:

make install

Depending on your permissions and prefix, make install may need super user permissions.

PHP extensions

Extensions provide additional functionality on top of PHP. PHP consists of many essential bundled extensions. Additional extensions can be found in the PHP Extension Community Library - PECL.

Contributing

The PHP source code is located in the Git repository at github.com/php/php-src. Contributions are most welcome by forking the repository and sending a pull request.

Discussions are done on GitHub, but depending on the topic can also be relayed to the official PHP developer mailing list internals@lists.php.net.

New features require an RFC and must be accepted by the developers. See Request for comments - RFC and Voting on PHP features for more information on the process.

Bug fixes don't require an RFC. If the bug has a GitHub issue, reference it in the commit message using GH-NNNNNN. Use #NNNNNN for tickets in the old bugs.php.net bug tracker.

Fix GH-7815: php_uname doesn't recognise latest Windows versions
Fix #55371: get_magic_quotes_gpc() throws deprecation warning

See Git workflow for details on how pull requests are merged.

Guidelines for contributors

See further documents in the repository for more information on how to contribute:

Credits

For the list of people who've put work into PHP, please see the PHP credits page.