The PHP Interpreter https://www.php.net
Find a file
Dmitry Stogov 88e257c152 Merge branch 'PHP-7.2'
* PHP-7.2:
  Fixed bug in type inference
2017-11-27 10:17:07 +03:00
appveyor
build
ext Merge branch 'PHP-7.2' 2017-11-27 10:17:07 +03:00
main Fix C++ build failure due to format macros 2017-11-24 19:02:59 +01:00
pear
sapi fix constant defined undefined behavior warning 2017-11-24 19:01:46 +01:00
scripts
tests
travis
TSRM
win32 We don't check for Windows in the win32/ directory, as files here are only compiled on Windows anyway 2017-11-25 00:54:16 +01:00
Zend Subtract one zval from memset 2017-11-25 18:02:01 +01:00
.appveyor.yml
.editorconfig
.gdbinit
.gitattributes
.gitignore
.travis.yml
acinclude.m4
buildconf
buildconf.bat
CODING_STANDARDS
config.guess
config.sub
configure.ac
CONTRIBUTING.md
CREDITS
EXTENSIONS
footer
genfiles
header
INSTALL
LICENSE
ltmain.sh
makedist
Makefile.frag
Makefile.gcov
Makefile.global
NEWS Print PHP version in phpinfo() func html title 2017-11-25 15:28:19 -05:00
php.gif
php.ini-development
php.ini-production
php7.spec.in
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
README.SELF-CONTAINED-EXTENSIONS
README.STREAMS
README.SUBMITTING_PATCH
README.TESTING
README.TESTING2
README.UNIX-BUILD-SYSTEM
README.WIN32-BUILD-SYSTEM
run-tests.php
server-tests-config.php
server-tests.php
snapshot
stamp-h.in
UPGRADING
UPGRADING.INTERNALS
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