The PHP Interpreter
Go to file
Xinchen Hui 9b34f44f41 Merge branch 'PHP-7.1' of git.php.net:/php-src into PHP-7.1
* 'PHP-7.1' of git.php.net:/php-src: (32 commits)
  fix compiler warning
  rework long path normalization stuf
  More tolerance in another IntlCalendar test
  Ensure session GC is not run during variation6.phpt
  add folds
  improve typedef and fix the fake function
  add missing cast
  Fix typos, previous version used reserver/reserverd/reserved
  Fixed bug #72625 realpath() fails on non canonical long path
  correct comment
  don't return long path prefix to script
  fix test
  fix test
  Fix #68712: suspicious if-else statements
  Fix copy&paste errors in gd_interpolation.c
  Fix #66555: Always false condition in ext/gd/libgd/gdkanji.c
  Fix ClosedGeneratorException possibly thrown into wrong scope
  Fix for bug #54431
  Fix build
  Make sure TOKEN_PARSE mode is thread safe
  ...
2016-07-24 11:03:49 +08:00
build
ext Merge branch 'PHP-7.1' of git.php.net:/php-src into PHP-7.1 2016-07-24 11:03:49 +08:00
main Require strict base64 in data URI 2016-07-22 18:03:55 +02:00
netware
pear
sapi Merge branch 'PHP-7.0' into PHP-7.1 2016-07-22 09:37:00 +02:00
scripts
tests Merge branch 'PHP-7.0' 2016-07-14 23:22:41 +02:00
travis
TSRM Fix for bug #72513 2016-07-12 22:03:09 -07:00
win32 fix compiler warning 2016-07-24 03:51:53 +02:00
Zend Merge remote-tracking branch 'origin/PHP-7.0' into PHP-7.1 2016-07-23 16:40:02 +02:00
.gdbinit
.gitattributes
.gitignore
.travis.yml
acinclude.m4 Bump minimal OpenSSL version to 1.0.1 2016-07-17 17:21:07 +01:00
buildconf
buildconf.bat
CODING_STANDARDS Update CODING_STANDARDS 2016-05-18 17:45:12 +02:00
config.guess
config.sub
configure.in 5.6.24RC1 2016-07-07 01:43:25 +02:00
CONTRIBUTING.md
CREDITS
EXTENSIONS
footer
genfiles
header
INSTALL remove description for apache 1.3 2016-04-05 12:13:38 +02:00
LICENSE
ltmain.sh
makedist
Makefile.frag
Makefile.gcov
Makefile.global
makerpm
NEWS Fixed bug #72661 (ReflectionType::__toString crashes with iterable) 2016-07-24 11:01:19 +08:00
php7.spec.in
php.gif
php.ini-development Merge branch 'PHP-5.6' into PHP-7.0 2016-07-21 16:50:37 +02:00
php.ini-production Merge branch 'PHP-5.6' into PHP-7.0 2016-07-21 16:50:37 +02:00
README.EXT_SKEL
README.GIT-RULES
README.input_filter
README.MAILINGLIST_RULES
README.md Fix typo 2016-06-04 19:06:59 +02:00
README.namespaces
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 Fix phpdbg ZTS watchpoint+shutdown sequences & opcache+watchpoints 2016-07-12 20:50:51 +02:00
server-tests-config.php
server-tests.php
snapshot
stamp-h.in
stub.c
UPGRADING update UPGRADING 2016-07-19 20:34:22 +02:00
UPGRADING.INTERNALS move the internal only info into UPGRADING.INTERNALS 2016-07-11 11:22:00 +02:00
vcsclean

The PHP Interpreter

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

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