Go to file
Peter Kokot a8e879c53f Join README.GIT-RULES and CONTRIBUTING.md
This patch joins two very much related pieces of docs together in a
single file dedicated to all sorts of contributing info.

Some more changes:
- Branches info copied from the current master branch
- LXR and bonsai info removed
- Duplicated info reduced a bit
- Security branch updated to 7.1
- Refactor intro for Git commit rules
- Updated README.GIT-RULES file usage in win32/build/confutils.js
- Refactored configure.ac
2019-03-30 15:58:23 +01:00
appveyor Disable test parallelization on AppVeyor with opcache 2019-02-28 10:57:24 +01:00
build Remove php7.spec.in file 2019-03-28 17:42:11 +01:00
ext Fix handling and extend ext/ffi/tests/044.phpt 2019-03-30 12:53:32 +01:00
main tsrm environment lock 2019-03-29 19:06:02 +01:00
pear [ci skip] Remove text editor modelines 2019-03-23 21:09:38 +01:00
sapi tsrm environment lock 2019-03-29 19:06:02 +01:00
scripts Refactor PHP_PROG_BISON and PHP_PROG_RE2C 2019-03-30 02:01:02 +01:00
tests Fix lineno for more inheritance errors 2019-03-27 13:02:28 +01:00
travis Remove enable-wddx from Travis compile as it WDDX has been unbundled as of PHP 7.4 2019-03-23 23:23:21 +01:00
TSRM tsrm environment lock 2019-03-29 19:06:02 +01:00
win32 Join README.GIT-RULES and CONTRIBUTING.md 2019-03-30 15:58:23 +01:00
Zend Refactor PHP_PROG_BISON and PHP_PROG_RE2C 2019-03-30 02:01:02 +01:00
.appveyor.yml Disable test parallelization on AppVeyor with opcache 2019-02-28 10:57:24 +01:00
.editorconfig Update editorconfig 2019-03-07 01:03:56 +01:00
.gdbinit Sync types in .gdbinit, improve property dumping 2019-02-26 17:26:16 +01:00
.gitattributes Fix .gitattributes 2018-10-20 22:58:27 +02:00
.gitignore Remove php7.spec.in file 2019-03-28 17:42:11 +01:00
.travis.yml Enable parallel tests on Travis 2019-02-20 12:19:01 +01:00
acinclude.m4 Refactor PHP_PROG_BISON and PHP_PROG_RE2C 2019-03-30 02:01:02 +01:00
buildconf Enhance the buildconf script 2019-03-16 23:43:25 +01:00
buildconf.bat Sync leading and final newlines in source code files 2018-10-14 12:56:38 +02:00
CODING_STANDARDS Move all testing docs to qa.php.net 2018-10-18 08:01:22 +02:00
configure.ac Join README.GIT-RULES and CONTRIBUTING.md 2019-03-30 15:58:23 +01:00
CONTRIBUTING.md Join README.GIT-RULES and CONTRIBUTING.md 2019-03-30 15:58:23 +01:00
EXTENSIONS Unbundle ext/wddx 2019-03-20 14:15:50 +01:00
header Remove yearly range from copyright notice 2019-01-30 11:03:12 +02:00
LICENSE Update and fix remaining year ranges (2019) 2019-02-08 23:14:29 +01:00
NEWS Merge branch 'PHP-7.3' into PHP-7.4 2019-03-27 10:04:36 +01:00
php.gif
php.ini-development Merge branch 'PHP-7.3' into PHP-7.4 2019-03-19 16:28:10 +01:00
php.ini-production Merge branch 'PHP-7.3' into PHP-7.4 2019-03-19 16:28:10 +01:00
README.input_filter Trim trailing whitespace in source code files 2018-10-13 14:17:28 +02:00
README.MAILINGLIST_RULES - mention rfc 1855 2008-01-17 14:37:58 +00:00
README.md Join README.GIT-RULES and CONTRIBUTING.md 2019-03-30 15:58:23 +01:00
README.NEW-OUTPUT-API Trim trailing whitespace in source code files 2018-10-13 14:17:28 +02:00
README.PARAMETER_PARSING_API Link to the fast_zpp RFC 2018-12-10 12:53:12 +11:00
README.REDIST.BINS [ci skip] Remove oniguruma and libzip leftovers 2019-03-04 01:26:56 +01:00
README.RELEASE_PROCESS Join README.GIT-RULES and CONTRIBUTING.md 2019-03-30 15:58:23 +01:00
README.SELF-CONTAINED-EXTENSIONS Integrate README.EXT_SKEL to help option 2019-03-13 20:56:10 +01:00
README.STREAMS Remove local variables 2019-02-03 21:03:00 +01:00
README.UNIX-BUILD-SYSTEM [ci skip] Remove automake and aclocal in comments 2018-10-21 13:06:58 +02:00
run-tests.php Add minimum required PHP version to run-tests.php 2019-03-26 22:31:01 +01:00
UPGRADING Implement new custom object serialization mechanism 2019-03-22 10:43:06 +01:00
UPGRADING.INTERNALS [ci skip] Mention PHP_PROG_BISON and PHP_PROG_RE2C 2019-03-30 13:59:14 +01: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.

Build status Build 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 from source

On *nix systems:

./buildconf
./configure
make
make test

See ./configure -h and make -h for configuration options. For example, the -j option allows parallel execution of the build recipes where N is the number of available processor cores:

make -j N

For Windows, see Build your own PHP on Windows.

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 git.php.net. Contributions are most welcome by forking the GitHub mirror 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 do not require an RFC but require a bug tracker ticket. Open a ticket at bugs.php.net and reference the bug id using #NNNNNN.

Fix #55371: get_magic_quotes_gpc() throws deprecation warning

After removing magic quotes, the get_magic_quotes_gpc function caused a
deprecated warning. get_magic_quotes_gpc can be used to detect the
magic_quotes behavior and therefore should not raise a warning at any time.
The patch removes this warning.

Pull requests are not merged directly on GitHub. All PRs will be pulled and pushed through git.php.net. See Git workflow for more details.

Guidelines for contributors

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

Testing

To run tests the make test is used after a successful compilation of the sources. The -j option provides faster parallel execution based on the number of cores (N):

make -j N test

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

Credits

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