Go to file
Christoph M. Becker 2f4973fd88
Revert GH-10279
Cf. <https://github.com/php/php-src/pull/10220#issuecomment-1383739816>.

This reverts commit 45a128c9de.
This reverts commit 1eb71c3f15.
This reverts commit 492523a779.
This reverts commit c7a4633891.
This reverts commit 308adb915c.
This reverts commit cd27d5e07f.
This reverts commit c5933409b4.
This reverts commit 46371f4eb3.
This reverts commit 623e2e9fc6.
This reverts commit e7434c1247.
This reverts commit d28d323ca2.
This reverts commit 1a067b84ee.
This reverts commit a55c0c5fc3.
This reverts commit b5aeb3a4d4.
This reverts commit f061a035e4.
This reverts commit b088575119.
This reverts commit b1d48774a7.
This reverts commit 94f9a20ce6.
This reverts commit 4831e48708.
This reverts commit cd985de190.
This reverts commit 9521d21681.
This reverts commit d6136151e9.
2023-01-16 12:25:59 +01:00
.github Stop using the deprecated set-output command in nightly_matrix.php (#10302) 2023-01-12 20:07:31 +01:00
appveyor Merge branch 'PHP-8.1' into PHP-8.2 2022-10-09 18:48:07 +02:00
build build/php.m4: remove test for integer types (#10304) 2023-01-13 11:51:15 +00:00
docs Replace Azure DevOps link with GitHub Actions 2022-12-07 11:53:15 -06:00
ext Revert GH-10279 2023-01-16 12:25:59 +01:00
main Revert GH-10279 2023-01-16 12:25:59 +01:00
pear [ci skip] Remove text editor modelines 2019-03-23 21:09:38 +01:00
sapi Merge branch 'PHP-8.2' 2023-01-14 15:15:12 +00:00
scripts Fix phpize to include _GNU_SOURCE by default 2022-06-16 20:49:03 +01:00
tests Improvements in modifier parsing (#9926) 2022-11-17 16:20:27 +01:00
travis Add --[no-]progress option to run-tests.php (#9255) 2022-08-11 20:58:15 +02:00
TSRM Merge branch 'PHP-8.2' 2022-12-13 19:43:47 +01:00
win32 Limit stack size (#9104) 2022-12-16 17:44:26 +01:00
Zend Revert GH-10279 2023-01-16 12:25:59 +01:00
.appveyor.yml Limit stack size (#9104) 2022-12-16 17:44:26 +01:00
.cirrus.yml Limit stack size (#9104) 2022-12-16 17:44:26 +01:00
.editorconfig Fix JIT crash with large number of match/switch arms (#8961) 2022-07-18 12:34:20 +02:00
.gdbinit .gdbinit: Update print_ht for new compact packed arrays representation (#8966) 2022-07-11 18:04:56 +02:00
.gitattributes Collapse more generated files in PRs (#8754) 2022-06-12 10:56:35 +02:00
.gitignore Windows arm64 build system support 2022-08-09 16:22:14 +02:00
.travis.yml Add travis_wait to travis for test.sh 2022-09-25 21:51:32 +02:00
buildconf Remove build.mk usage 2019-07-21 11:40:23 +02:00
buildconf.bat Fix #79146: cscript can fail to run on some systems 2020-01-21 11:53:11 +01:00
CODING_STANDARDS.md [skip ci] Amend coding style (#9797) 2022-10-21 18:25:11 +01:00
configure.ac Limit stack size (#9104) 2022-12-16 17:44:26 +01:00
CONTRIBUTING.md Prepare for PHP 8.3 2022-08-30 11:17:15 -04:00
EXTENSIONS [skip ci] Change status of BCMath into Maintained (#10089) 2022-12-13 07:35:58 +00:00
LICENSE Fix FSF address & update year to 2022 2022-03-19 18:25:29 +01:00
NEWS Merge branch 'PHP-8.1' into PHP-8.2 2023-01-15 15:43:34 +00:00
php.ini-development [ci skip] Fix GH-10056: [grammar] "less security-conscience applications" 2022-12-08 13:38:28 +01:00
php.ini-production [ci skip] Fix GH-10056: [grammar] "less security-conscience applications" 2022-12-08 13:38:28 +01:00
README.md [skip ci] Readme: Add Github Actions nightly workflow status badge (#8971) 2022-07-11 14:14:39 +02:00
README.REDIST.BINS [ci skip] Merge branch 'PHP-8.1' into PHP-8.2 2022-11-10 12:42:19 +01:00
run-tests.php Merge branch 'PHP-8.2' 2023-01-13 18:07:58 +01:00
UPGRADING socket DF flag on UDP socket via IP_MTU_DISCOVER on Linux and IP_DONTFRAGMENT on FreeBSD for path MTU discovery purpose. 2023-01-12 22:22:30 +00:00
UPGRADING.INTERNALS Update UPGRADING.INTERNALS with the changes made to php_url_encode_hash_ex() 2023-01-15 16:10:14 +00: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 Build status 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.