The PHP Interpreter
Go to file
Anatol Belski 000e35db81 Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1:
  [ci skip] Update NEWS
2018-03-06 22:07:31 +01:00
appveyor Merge branch 'PHP-7.1' into PHP-7.2 2017-12-22 23:39:37 +01:00
build year++ 2018-01-02 12:55:14 +08:00
ext Merge branch 'PHP-7.1' into PHP-7.2 2018-03-06 02:47:01 +03:00
main Now working on 7.2.4-dev 2018-02-13 14:32:37 -05:00
pear
sapi Merge branch 'PHP-7.1' into PHP-7.2 2018-02-27 23:33:36 -05:00
scripts Merge branch 'PHP-7.1' into PHP-7.2 2018-01-03 16:00:34 +08:00
tests Merge branch 'PHP-7.1' into PHP-7.2 2017-09-21 00:04:56 +01:00
travis disable --with-pcre-valgrind on travis 2017-07-13 20:28:44 +02:00
TSRM year++ 2018-01-02 12:55:14 +08:00
win32 Merge branch 'PHP-7.1' into PHP-7.2 2018-02-20 08:00:08 +01:00
Zend Merge branch 'PHP-7.1' into PHP-7.2 2018-03-06 01:00:14 +03:00
.appveyor.yml Merge branch 'PHP-7.1' into PHP-7.2 2018-02-20 15:52:42 +01:00
.editorconfig Update .editorconfig with some more configs 2017-10-19 11:53:37 +01:00
.gdbinit Fixed print_const_table function and zval types in ____printzv_contents 2018-02-15 08:57:32 +01:00
.gitattributes Remove ident gitattribute for ext/zip/php_zip.c 2017-10-03 07:14:50 +01:00
.gitignore Merge branch 'PHP-7.1' into PHP-7.2 2017-09-25 21:58:41 +02:00
.travis.yml Merge branch 'PHP-7.1' into PHP-7.2 2017-10-25 03:20:34 +02:00
acinclude.m4 Merge branch 'PHP-7.1' into PHP-7.2 2018-02-08 10:51:07 +01:00
buildconf
buildconf.bat
CODING_STANDARDS Remove obsolete function names from CODING_STANDARDS file 2017-07-25 07:04:23 +01:00
config.guess
config.sub
configure.ac Merge branch 'PHP-7.1' into PHP-7.2 2018-03-05 22:38:03 +01:00
CONTRIBUTING.md Update CONTRIBUTING 2017-04-02 13:45:08 +02:00
CREDITS
EXTENSIONS Merge branch 'PHP-7.1' into PHP-7.2 2018-02-23 17:57:57 -08:00
footer
genfiles
header year++ 2018-01-02 12:55:14 +08:00
INSTALL
LICENSE Happy new year (Update copyright to 2018) 2018-01-02 23:42:29 +02:00
ltmain.sh
makedist Fixed bug #75614 2017-12-16 22:31:10 +01:00
Makefile.frag
Makefile.gcov
Makefile.global Remove some old sapi/apache_hooks and sapi/apache leftovers 2017-09-25 21:56:39 +02:00
NEWS Fix #76041: null pointer access crashed php 2018-03-02 17:18:45 +01:00
php7.spec.in
php.gif
php.ini-development Document removal of opcache.fast_shutdown 2017-12-18 21:44:48 +01:00
php.ini-production Document removal of opcache.fast_shutdown 2017-12-18 21:44:48 +01:00
README.EXT_SKEL
README.GIT-RULES
README.input_filter
README.MAILINGLIST_RULES
README.md
README.NEW-OUTPUT-API
README.PARAMETER_PARSING_API
README.REDIST.BINS
README.RELEASE_PROCESS minor fix for web announce 2017-07-06 12:34:00 +02:00
README.SELF-CONTAINED-EXTENSIONS
README.STREAMS
README.SUBMITTING_PATCH
README.TESTING
README.TESTING2
README.UNIX-BUILD-SYSTEM
README.WIN32-BUILD-SYSTEM
run-tests.php year++ 2018-01-02 12:55:14 +08:00
server-tests-config.php
server-tests.php year++ 2018-01-02 12:55:14 +08:00
snapshot
stamp-h.in
UPGRADING Document removal of opcache.fast_shutdown 2017-12-18 21:44:48 +01:00
UPGRADING.INTERNALS valid_symbol_table removed 2017-07-05 06:33:34 +02:00
vcsclean

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