Go to file
Pierre Joye 3ae86b9cce Merge branch 'phpng' of git.php.net:php-src into phpng
# By Stanislav Malyshev (15) and others
# Via Stanislav Malyshev (15) and others
* 'phpng' of git.php.net:php-src: (53 commits)
  Use defined macro
  Refactored tidy (all tests passes)
  Reverted wrong commit Xinchen, stop commit changed configs :) You may use environment variables to ovverride default settings
  Fixed reference counting, IS_REFERENCE and IS_INDIRECT support
  Terminate string Useproper hash function
  C89 compat
  Fixed curl_close() behavior
  In most user extensions functions like mysql_close() should use zend_list_close() instead of zend_list_delete(). This closes the actual connection and frees extension specific data structures, but doesn't free zend_reference structure that might be referenced from zval(s). This also doesn't decrement the resource reference counter.
  Fixed access to uninitialized data and attempt to double free
  Fixed safe resource close. It must not de deleted (just closed), because it still may be referenced from zval(s). This fixes few ext/ftp test memory failures detected with valgrind.
  Nested PCRE calls may clobber extra->mark and it has to be reinitailized This fixes invalid memory writes (detected with valgrind) in Zend/tests/closure_047.phpt and Zend/tests/closure_048.phpt.
  Added comment
  fix test - output can be chunked
  fix test
  fix test
  Fixed test for commit 997be125eb
  Add bug fix to NEWS
  Update UPGRADING according to bug fix
  fix test
  improve CURL tests to allow testing without separate server
  ...
2014-05-14 20:06:58 +02:00
build
ext Merge branch 'phpng' of git.php.net:php-src into phpng 2014-05-14 20:06:58 +02:00
main Merge branch 'master' into phpng 2014-05-13 15:24:40 +04:00
netware
pear
sapi There should been memory leaks(and don't use pointer cast) 2014-05-08 15:20:13 +08:00
scripts
tests Merge branch 'master' into phpng 2014-05-13 15:24:40 +04:00
travis make release tags not fail Travis CI 2014-05-08 01:11:29 -07:00
TSRM Merge branch 'PHP-5.5' into PHP-5.6 2014-02-24 10:13:11 +01:00
win32 fix windows build 2014-05-14 20:06:18 +02:00
Zend C89 compat 2014-05-13 14:04:53 +02:00
.gdbinit Update .gdbinit 2014-02-20 18:30:06 +08:00
.gitattributes
.gitignore add parser files to dist 2014-04-24 08:09:35 +01:00
.travis.yml don't bother with travis for now, not ready yet 2014-05-08 01:05:17 -07:00
acinclude.m4
buildconf
buildconf.bat
CODING_STANDARDS
config.guess
config.sub
configure.in 5.4.29 is next 2014-04-15 16:51:38 -07:00
CREDITS
EXTENSIONS
footer
genfiles
header
INSTALL
LICENSE
ltmain.sh
makedist
Makefile.frag Updated version number to 0.4.0 2014-04-16 13:56:26 +02:00
Makefile.gcov
Makefile.global Merge branch 'PHP-5.5' into PHP-5.6 2014-03-10 15:55:05 +08:00
makerpm
NEWS Add bug fix to NEWS 2014-05-12 15:35:16 +09:00
php5.spec.in
php.gif
php.ini-development Merge branch 'PHP-5.6' 2014-04-14 09:34:02 +02:00
php.ini-production Merge branch 'PHP-5.6' 2014-04-14 09:34:02 +02:00
README.EXT_SKEL
README.GIT-RULES
README.input_filter
README.MAILINGLIST_RULES
README.md
README.namespaces
README.NEW-OUTPUT-API
README.PARAMETER_PARSING_API
README.REDIST.BINS
README.RELEASE_PROCESS add tests stuff to README 2014-05-11 16:04:28 -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
server-tests-config.php
server-tests.php
snapshot
stamp-h.in
stub.c
svnclean.bat
UPGRADING Update UPGRADING according to bug fix 2014-05-12 15:35:16 +09:00
UPGRADING.INTERNALS Added further notice about removal of IS_CONSTANT_INDEX/ARRAY macros 2014-04-29 20:43:58 +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 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