The PHP Interpreter
C PHP C++ Objective-C M4 Shell Other
Permalink
Failed to load latest commit information.
TSRM Use modern autotools name of configure.ac instead of configure.in Jan 27, 2017
Zend Merge branch 'PHP-7.1' Mar 1, 2017
appveyor Merge branch 'PHP-7.1' Jan 6, 2017
build Use modern autotools name of configure.ac instead of configure.in Jan 27, 2017
ext Updated to version 2017.1 (2017a) Mar 1, 2017
main Merge branch 'PHP-7.1' Feb 25, 2017
pear pear 1.10 was released and the go-pear and install pear phars are now… Oct 7, 2015
sapi Merge branch 'PHP-7.1' Feb 27, 2017
scripts Use modern autotools name of configure.ac instead of configure.in Jan 27, 2017
tests Change PHP_OS_FAMILY slightly Feb 22, 2017
travis Remove mcrypt Oct 4, 2016
win32 Merge branch 'PHP-7.1' Feb 24, 2017
.appveyor.yml reenable appveyor cache Jan 5, 2017
.editorconfig Limit editorconfig to C code Sep 5, 2016
.gdbinit Removing zmemcheck from .gdbinit Jan 18, 2017
.gitattributes Remove set_magic_quotes_runtime Jan 17, 2015
.gitignore Use modern autotools name of configure.ac instead of configure.in Jan 27, 2017
.travis.yml Remove mcrypt Oct 4, 2016
CODING_STANDARDS Update CODING_STANDARDS May 18, 2016
CONTRIBUTING.md Add documentation contribution information. May 21, 2015
CREDITS Let's pretend this is up-to-date now Apr 22, 2002
EXTENSIONS Merge branch 'PHP-7.1' Jan 21, 2017
INSTALL remove description for apache 1.3 Apr 5, 2016
LICENSE Update copyright headers to 2017 Jan 4, 2017
Makefile.frag Drop zend_indent() as it was never used, complete or working Mar 27, 2015
Makefile.gcov exclude datelib from coverage report as asked by Derick Oct 24, 2015
Makefile.global pull-request/2393: Feb 22, 2017
NEWS update NEWS Feb 13, 2017
README.EXT_SKEL Remove TSRMLS_* from docs as it's not used anymore Feb 18, 2016
README.GIT-RULES Update GIT-RULES release list Aug 18, 2016
README.MAILINGLIST_RULES MFH Jan 17, 2008
README.NEW-OUTPUT-API Remove TSRMLS_* from docs as it's not used anymore Feb 18, 2016
README.PARAMETER_PARSING_API Fix one zpp usage in interbase Mar 3, 2016
README.REDIST.BINS cleanup, ext/json is simple PHP now Feb 20, 2016
README.RELEASE_PROCESS Use modern autotools name of configure.ac instead of configure.in Jan 27, 2017
README.SELF-CONTAINED-EXTENSIONS added notes about the PECL site conformity Oct 14, 2013
README.STREAMS Remove TSRMLS_* from docs as it's not used anymore Feb 18, 2016
README.SUBMITTING_PATCH Small tidy ups and raise visibility of GitHub PR process Aug 7, 2014
README.TESTING Update README.TESTING Feb 7, 2015
README.TESTING2 typo fixes - https://github.com/vlajos/misspell_fixer Nov 23, 2014
README.UNIX-BUILD-SYSTEM Replaces php5 with php7, without whitespace changes. Sep 20, 2014
README.WIN32-BUILD-SYSTEM - if they are outdated/wrong, no need to confuse the users Feb 4, 2010
README.input_filter Remove TSRMLS_* from docs as it's not used anymore Feb 18, 2016
README.md add build status badge Dec 16, 2016
UPGRADING Merge branch 'pull-request/2355' Feb 14, 2017
UPGRADING.INTERNALS fix typo Feb 15, 2017
acinclude.m4 Merge branch 'PHP-7.1' Jan 10, 2017
buildconf Use modern autotools name of configure.ac instead of configure.in Jan 27, 2017
buildconf.bat MFH: Check if configure script was copied, and output an error if it … Jan 2, 2009
config.guess Update config.guess and config.sub Dec 4, 2014
config.sub Remove Netware support Nov 12, 2016
configure.ac Merge branch 'PHP-7.1' Feb 7, 2017
footer consistent with the used style Feb 20, 2003
genfiles make it possible to set the re2c and yacc paths via environment varia… Jun 10, 2015
header Update copyright headers to 2017 Jan 4, 2017
ltmain.sh - Upgraded bundled libtool to 1.5.26 Nov 23, 2009
makedist Fixed bug #70917 install-pear-nozlib.phar missing Nov 15, 2015
makerpm fix the day of the week Jan 29, 2015
php.gif change these in HEAD too Mar 7, 2006
php.ini-development Deprecate track_errors / $php_errormsg Feb 3, 2017
php.ini-production Merge branch 'PHP-7.1' Jan 11, 2017
php7.spec.in Replaces php5 with php7, without whitespace changes. Sep 20, 2014
run-tests.php Merge branch 'PHP-7.1' Feb 11, 2017
server-tests-config.php typo fixes - https://github.com/vlajos/misspell_fixer Nov 19, 2014
server-tests.php Deprecate each() Feb 3, 2017
snapshot Integration of -ng changes. Changes: Dec 30, 1999
stamp-h.in # Fix ColorResolve bogosity Nov 21, 1999
stub.c Add newline. Recent GCC snapshots segfault, if the input file is comp… Dec 1, 2000
vcsclean Support "git worktree" Aug 10, 2016

README.md

The PHP Interpreter

This is the github mirror of the official PHP repository located at http://git.php.net.

Build Status Build status

Pull Requests

PHP accepts pull requests via github. Discussions are done on github, but depending on the topic can also be relayed to the official PHP developer mailing list [email protected].

New features require an RFC and must be accepted by the developers. See https://wiki.php.net/rfc and https://wiki.php.net/rfc/voting for more information on the process.

Bug fixes do not require an RFC, but require a bugtracker ticket. Always open a ticket at https://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 deprecate warning. get_magic_quotes_gpc can be used to detected
the magic_quotes behavior and therefore should not raise a warning at any
time. The patch removes this warning

We do not merge pull requests directly on github. All PRs will be pulled and pushed through http://git.php.net.

Guidelines for contributors