The PHP Interpreter https://www.php.net
Find a file
2018-12-10 10:58:44 +11:00
appveyor
build
ext Merge branch 'PHP-7.3' 2018-12-10 10:58:44 +11:00
main Remove unused import_used_extension utility value 2018-12-04 19:01:01 +01:00
pear
sapi Remove redundant Exception::__clone() method 2018-11-26 13:57:17 +01:00
scripts
tests
travis ext/curl: port to pkg-config macro and consistently require its use 2018-12-09 17:28:02 +01:00
TSRM
win32
Zend Reorder conditions 2018-12-07 19:21:26 +03:00
.appveyor.yml
.editorconfig
.gdbinit
.gitattributes
.gitignore
.travis.yml Merge branch 'PHP-7.2' into PHP-7.3 2018-12-03 00:42:55 -08:00
acinclude.m4 ext/intl: Use pkg-config to detect icu 2018-12-09 16:59:24 +01:00
buildconf
buildconf.bat
CODING_STANDARDS
config.guess
config.sub
configure.ac Remove support for Rhapsody code name 2018-12-02 11:41:57 +01:00
CONTRIBUTING.md Remove old generated files 2018-12-02 22:45:34 -02:00
CREDITS
EXTENSIONS [ci skip] Add myself as sqlite3 maintainer, officially 2018-11-29 13:49:55 +01:00
footer
genfiles
header
INSTALL
LICENSE
ltmain.sh
makedist
Makefile.gcov Add forked and maintained extension in php-src from GCOV 2018-12-02 22:36:52 -02:00
Makefile.global
NEWS missing entry for #77020 2018-12-08 10:06:19 +01:00
php.gif
php.ini-development Merge branch 'PHP-7.3' 2018-12-08 10:25:35 +01:00
php.ini-production Merge branch 'PHP-7.3' 2018-12-08 10:25:35 +01:00
php7.spec.in
README.EXT_SKEL
README.GIT-RULES [ci skip] PHP 7.1 is now security-only branch 2018-11-23 21:20:13 +01:00
README.input_filter
README.MAILINGLIST_RULES
README.md
README.NEW-OUTPUT-API
README.PARAMETER_PARSING_API
README.REDIST.BINS
README.RELEASE_PROCESS ZEND_VERSION should be in sync with PHP_VERSION and friends 2018-12-07 15:11:48 +01:00
README.SELF-CONTAINED-EXTENSIONS
README.STREAMS
README.SUBMITTING_PATCH
README.UNIX-BUILD-SYSTEM
README.WIN32-BUILD-SYSTEM
run-tests.php Merge remote-tracking branch 'github/pr/3345' 2018-12-02 16:00:44 -08:00
snapshot
UPGRADING [ci skip] Fix typo 2018-12-06 00:24:25 +01:00
UPGRADING.INTERNALS
vcsclean

The PHP Interpreter

This is the github mirror of the official PHP repository located at https://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 https://git.php.net.

Guidelines for contributors

Testing

To run tests the make test is used after successful compilation of the sources.

See Creating new test files chapter for more information about testing.