The PHP Interpreter
Go to file
Christoph M. Becker b92216b97d Fix #73272: imagescale() affects imagesetinterpolation()
We must not permanently change the interpolation method, but rather
have to restore the old method after we're done with scaling the image.
2016-10-09 15:10:34 +02:00
build Happy new year (Update copyright to 2016) 2016-01-03 01:44:37 +02:00
ext Fix #73272: imagescale() affects imagesetinterpolation() 2016-10-09 15:10:34 +02:00
main 5.6.28 is next 2016-09-29 00:55:36 +02:00
netware Happy new year (Update copyright to 2016) 2016-01-01 19:21:47 +02:00
pear
sapi Formatting. Fix possible memory corruption in FPM SHM management 2016-09-23 13:52:58 +02:00
scripts Happy new year (Update copyright to 2016) 2016-01-03 01:44:37 +02:00
tests backport 9a07245b72 from 7.0 2016-01-11 20:37:46 +01:00
travis Merge branch 'PHP-5.5' into PHP-5.6 2015-10-19 22:47:23 +02:00
TSRM fix HANDLE leak 2016-08-29 21:45:39 +02:00
win32 update libs_versions.txt 2016-09-26 15:39:01 +02:00
Zend Fix leak in zend_exception_error 2016-10-01 19:04:31 +02:00
.editorconfig Limit editorconfig to C code 2016-09-05 14:22:13 +02:00
.gdbinit
.gitattributes
.gitignore A picture is worth a thousand message digests 2016-09-11 12:56:53 +02:00
.travis.yml Merge branch 'PHP-5.5' into PHP-5.6 2015-10-19 22:47:23 +02:00
acinclude.m4
buildconf
buildconf.bat
CODING_STANDARDS Update CODING_STANDARDS 2014-11-23 17:14:32 -08:00
config.guess
config.sub
configure.in 5.6.28 is next 2016-09-29 00:55:36 +02:00
CREDITS
EXTENSIONS Add myself as pdo_dblib maintainer 2016-09-12 12:43:39 -04:00
footer
genfiles make it possible to set the re2c and yacc paths via environment variables for genfiles 2015-06-11 00:13:08 +02:00
header Happy new year (Update copyright to 2016) 2016-01-01 19:21:47 +02:00
INSTALL
LICENSE Happy new year (Update copyright to 2016) 2016-01-01 19:21:47 +02:00
ltmain.sh
makedist
Makefile.frag
Makefile.gcov exclude datelib from coverage report as asked by Derick 2015-10-24 17:38:20 -04:00
Makefile.global Align spacing in make install messages 2016-02-08 20:27:19 +02:00
makerpm
NEWS Fix #73272: imagescale() affects imagesetinterpolation() 2016-10-09 15:10:34 +02:00
php5.spec.in
php.gif
php.ini-development Fix #53745: cgi.discard_path option is missing from php.ini 2016-09-26 18:41:09 +02:00
php.ini-production Fix #53745: cgi.discard_path option is missing from php.ini 2016-09-26 18:41:09 +02:00
README.EXT_SKEL
README.GIT-RULES Adjust Git-Rules 2015-07-29 10:02:39 +02:00
README.input_filter
README.MAILINGLIST_RULES
README.md
README.namespaces
README.NEW-OUTPUT-API
README.PARAMETER_PARSING_API
README.REDIST.BINS
README.RELEASE_PROCESS Merge branch 'PHP-5.4' into PHP-5.5 2015-04-17 10:06:31 -07: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 Happy new year (Update copyright to 2016) 2016-01-03 01:44:37 +02:00
server-tests-config.php
server-tests.php Happy new year (Update copyright to 2016) 2016-01-03 01:44:37 +02:00
snapshot
stamp-h.in
stub.c
UPGRADING Fixed bug #71929 (CURLINFO_CERTINFO data parsing error). 2016-07-27 23:30:20 -04:00
UPGRADING.INTERNALS
vcsclean Support "git worktree" 2016-08-11 08:08:26 +09:00

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 mailinglist 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