The PHP Interpreter
Go to file
Nikita Popov 294e7c295f Annother attempt at fixing the mysqli_fetch_field tests
Instead of character set detection (which doesn't always work correctly)
fetch the character set info using mysqli_get_charset(). To make sure that
the returned info applies to all of client, connection and result
explicitely set utf8 as charset using mysqli_set_charset() before. I'm not
sure whether that last part is really necessary, but included it to be
safe.
2012-08-17 19:47:59 +02:00
build
ext Annother attempt at fixing the mysqli_fetch_field tests 2012-08-17 19:47:59 +02:00
main Merge branch 'PHP-5.4' 2012-08-09 00:12:22 -07:00
netware
pear
sapi Merge branch 'PHP-5.4' 2012-08-16 15:45:40 -03:00
scripts
tests Merge branch 'pull-request/132' 2012-08-05 21:15:53 -07:00
travis Add curl extension config, uses cli-server to test 2012-05-28 06:22:25 -04:00
TSRM Fixed bug #51860 (Include fails with toplevel symlink to /) 2012-01-30 10:08:11 +00:00
win32 Removed Logo GUIDs and replaced with Data URIs and div hidden with JS 2012-07-14 21:44:21 +01:00
Zend Refactor examing of jumping out of finally block 2012-08-18 00:16:34 +08:00
.gdbinit Fix wrong type in the marco of fetching thread globals 2012-03-11 15:12:28 +00:00
.gitattributes Merge branch 'PHP-5.3' into PHP-5.4 2012-08-11 16:00:00 +08:00
.gitignore Ignore the tempoary files 2012-03-22 17:22:17 +08:00
.travis.yml Make travis silent 2012-06-10 18:17:37 +04:00
acinclude.m4 Merge branch 'PHP-5.3' into PHP-5.4 2012-04-03 02:00:23 +09:00
buildconf Make "buildconf --force" more robust, per IRC chat. Not backported to 5.3 to avoid destabilization. 2012-03-06 21:30:59 +00:00
buildconf.bat
CODING_STANDARDS
config.guess
config.sub
configure.in Fixed bug #62460 (php binaries installed as binary.dSYM) 2012-08-05 20:22:07 -07:00
CREDITS
EXTENSIONS Added myself as curl maintainer 2011-12-04 16:46:45 +00:00
footer
genfiles
header - Year++ 2012-01-01 13:15:04 +00:00
INSTALL
LICENSE Bump copyright year. 2012-03-20 11:14:59 +01:00
ltmain.sh
makedist Merge branch 'PHP-5.3' into PHP-5.4 2012-06-22 20:01:06 +02:00
Makefile.frag
Makefile.gcov fix race condition in find (it was finding the copied files over and over again, and recursing forever) 2012-02-20 16:01:34 +00:00
Makefile.global
makerpm
NEWS Fixed bug #62836 (Seg fault or broken object references on unserialize()) 2012-08-17 18:28:32 +08:00
php5.spec.in
php.gif
php.ini-development Merge branch 'PHP-5.4' 2012-07-24 14:34:41 +02:00
php.ini-production Merge branch 'PHP-5.4' 2012-07-24 14:34:41 +02:00
README.EXT_SKEL
README.EXTENSIONS
README.GIT-RULES Move and update README.SVN-RULES to README.GIT-RULES 2012-04-13 02:12:47 +02:00
README.input_filter Merge branch 'PHP-5.3' into PHP-5.4 2012-03-20 17:58:58 +01:00
README.MAILINGLIST_RULES
README.md Add preliminary README.md for github 2012-06-03 18:49:47 +02:00
README.namespaces
README.NEW-OUTPUT-API
README.PARAMETER_PARSING_API
README.PHP4-TO-PHP5-THIN-CHANGES
README.REDIST.BINS
README.RELEASE_PROCESS fix RCs 2012-04-19 10:45:21 -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 Merge branch 'PHP-5.4' 2012-07-17 10:06:02 +01:00
server-tests-config.php
server-tests.php
snapshot
stamp-h.in
stub.c
svnclean.bat
UPGRADING Adjust UPGRADING/NEWS for additional mcrypt deprecations 2012-08-16 17:10:05 +02:00
UPGRADING.INTERNALS add NEWS/UPGRADING 2012-07-14 15:03:51 -07: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 http://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.