The PHP Interpreter
C PHP C++ Objective-C M4 Shell Other
Switch branches/tags
Permalink
Failed to load latest commit information.
TSRM use char* as we don't compile with UNICODE anyway Apr 28, 2017
Zend Fixed bug #74836 (isset on zero-prefixed numeric indexes in array bro… Jul 4, 2017
appveyor Merge branch 'PHP-7.1' Jun 17, 2017
build Use modern autotools name of configure.ac instead of configure.in Jan 27, 2017
ext Merge branch 'PHP-7.1' Jul 4, 2017
main Update versions for PHP 7.2.0alpha3 Jul 4, 2017
pear pear 1.10 was released and the go-pear and install pear phars are now… Oct 7, 2015
sapi Fixed bug #74849 Process is started as interactive shell in PhpStorm Jul 3, 2017
scripts Use modern autotools name of configure.ac instead of configure.in Jan 27, 2017
tests Bug #74815 crash with a combination of INI entries at startup Jun 27, 2017
travis Enable more control over travis/compile.sh Apr 18, 2017
win32 Fixed bug #74849 Process is started as interactive shell in PhpStorm Jul 3, 2017
.appveyor.yml Merge branch 'PHP-7.1' Jun 8, 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 Clean up .gitignore Jun 7, 2017
.travis.yml Merge branch 'PHP-7.1' Jun 3, 2017
CODING_STANDARDS Update CODING_STANDARDS May 18, 2016
CONTRIBUTING.md Update CONTRIBUTING Apr 2, 2017
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 for PHP 7.2.0alpha3 Jul 4, 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 Fix typos Mar 27, 2017
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 X.Y.0 releases are more special than X.Y.(1+) releases Jun 8, 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 Fixed bug #74514 5 session functions incorrectly warn when calling in… Jun 30, 2017
UPGRADING.INTERNALS upgrading: doc about ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX Jun 26, 2017
acinclude.m4 Merge branch 'PHP-7.1' Jun 22, 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 Update versions for PHP 7.2.0alpha3 Jul 4, 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
php.gif change these in HEAD too Mar 7, 2006
php.ini-development Allow loading PHP and Zend extensions by name Jun 22, 2017
php.ini-production Allow loading PHP and Zend extensions by name Jun 22, 2017
php7.spec.in Replaces php5 with php7, without whitespace changes. Sep 20, 2014
run-tests.php Fixed few test failures if php.ini contains zend.assertions=-1 Jun 21, 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
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 internals@lists.php.net.

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