php-8.3.10-nts-Win32-vs16-x64.zip
资源内容介绍
php-8.3.10-nts-Win32-vs16-x64.zip <div align="center"> <a href="https://php.net"> <img alt="PHP" src="https://www.php.net/images/logos/new-php-logo.svg" width="150"> </a></div># The PHP InterpreterPHP is a popular general-purpose scripting language that is especially suited toweb development. Fast, flexible and pragmatic, PHP powers everything from yourblog to the most popular websites in the world. PHP is distributed under the[PHP License v3.01](LICENSE).[](https://github.com/php/php-src/actions/workflows/push.yml)[](https://travis-ci.com/github/php/php-src)[](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:php)## DocumentationThe PHP manual is available at [php.net/docs](https://php.net/docs).## Installation### Prebuilt packages and binariesPrebuilt packages and binaries can be used to get up and running fast with PHP.For Windows, the PHP binaries can be obtained from[windows.php.net](https://windows.php.net). After extracting the archive the`*.exe` files are ready to use.For other systems, see the [installation chapter](https://php.net/install).### Building PHP source code*For Windows, see [Build your own PHP on Windows](https://wiki.php.net/internals/windows/stepbystepbuild_sdk_2).*For a minimal PHP build from Git, you will need autoconf, bison, and re2c. Fora default build, you will additionally need libxml2 and libsqlite3.On Ubuntu, you can install these using: sudo apt install -y pkg-config build-essential autoconf bison re2c \ libxml2-dev libsqlite3-devOn Fedora, you can install these using: sudo dnf install re2c bison autoconf make libtool ccache libxml2-devel sqlite-develGenerate configure: ./buildconfConfigure your build. `--enable-debug` is recommended for development, see`./configure --help` for a full list of options. # For development ./configure --enable-debug # For production ./configureBuild PHP. To speed up the build, specify the maximum number of jobs using `-j`: make -j4The number of jobs should usually match the number of available cores, whichcan be determined using `nproc`.## Testing PHP source codePHP ships with an extensive test suite, the command `make test` is used aftersuccessful compilation of the sources to run this test suite.It is possible to run tests using multiple cores by setting `-jN` in`TEST_PHP_ARGS`: make TEST_PHP_ARGS=-j4 testShall run `make test` with a maximum of 4 concurrent jobs: Generally the maximumnumber of jobs should not exceed the number of cores available.The [qa.php.net](https://qa.php.net) site provides more detailed info abouttesting and quality assurance.## Installing PHP built from sourceAfter a successful build (and test), PHP may be installed with: make installDepending on your permissions and prefix, `make install` may need super userpermissions.## PHP extensionsExtensions provide additional functionality on top of PHP. PHP consists of manyessential bundled extensions. Additional extensions can be found in the PHPExtension Community Library - [PECL](https://pecl.php.net).## ContributingThe PHP source code is located in the Git repository at[github.com/php/php-src](https://github.com/php/php-src). Contributions are mostwelcome by forking the repository and sending a pull request.Discussions are done on GitHub, but depending on the topic can also be relayedto the official PHP developer mailing list internals@lists.php.net.New features require an RFC and must be accepted by the developers. See[Request for comments - RFC](https://wiki.php.net/rfc) and[Voting on PHP features](https://wiki.php.net/rfc/voting) for more informationon the process.Bug fixes don't require an RFC. If the bug has a GitHub issue, reference it inthe commit message using `GH-NNNNNN`. Use `#NNNNNN` for tickets in the old[bugs.php.net](https://bugs.php.net) bug tracker. Fix GH-7815: php_uname doesn't recognise latest Windows versions Fix #55371: get_magic_quotes_gpc() throws deprecation warningSee [Git workflow](https://wiki.php.net/vcs/gitworkflow) for details on how pullrequests are merged.### Guidelines for contributorsSee further documents in the repository for more information on how tocontribute:- [Contributing to PHP](/CONTRIBUTING.md)- [PHP coding standards](/CODING_STANDARDS.md)- [Mailing list rules](/docs/mailinglist-rules.md)- [PHP release process](/docs/release-process.md)## CreditsFor the list of people who've put work into PHP, please see the[PHP credits page](https://php.net/credits.php).