php-8.3.10-nts-Win32-vs16-x64.zip
大小:30.67MB
价格:17积分
下载量:0
评分:
5.0
上传者:OldLiu001
更新日期:2025-09-22

php-8.3.10-nts-Win32-vs16-x64.zip

资源文件列表(大概)

文件名
大小
deplister.exe
134.5KB
dev/
-
dev/php8.lib
871.23KB
ext/
-
extras/
-
extras/ssl/
-
extras/ssl/legacy.dll
163KB
extras/ssl/openssl.cnf
12.42KB
ext/php_bz2.dll
85.5KB
ext/php_com_dotnet.dll
91KB
ext/php_curl.dll
687.5KB
ext/php_dba.dll
151.5KB
ext/php_dl_test.dll
15.5KB
ext/php_enchant.dll
25.5KB
ext/php_exif.dll
71.5KB
ext/php_ffi.dll
157.5KB
ext/php_fileinfo.dll
7.69MB
ext/php_ftp.dll
62KB
ext/php_gd.dll
9.22MB
ext/php_gettext.dll
54KB
ext/php_gmp.dll
320KB
ext/php_imap.dll
937.5KB
ext/php_intl.dll
437.5KB
ext/php_ldap.dll
253KB
ext/php_mbstring.dll
1.52MB
ext/php_mysqli.dll
117KB
ext/php_oci8_19.dll
138.5KB
ext/php_odbc.dll
65.5KB
ext/php_opcache.dll
789.5KB
ext/php_openssl.dll
150.5KB
ext/php_pdo_firebird.dll
32KB
ext/php_pdo_mysql.dll
29.5KB
ext/php_pdo_oci.dll
36KB
ext/php_pdo_odbc.dll
29.5KB
ext/php_pdo_pgsql.dll
43.5KB
ext/php_pdo_sqlite.dll
28.5KB
ext/php_pgsql.dll
97.5KB
ext/php_shmop.dll
17.5KB
ext/php_snmp.dll
419.5KB
ext/php_soap.dll
251KB
ext/php_sockets.dll
77KB
ext/php_sodium.dll
92.5KB
ext/php_sqlite3.dll
56.5KB
ext/php_sysvshm.dll
18.5KB
ext/php_tidy.dll
736KB
ext/php_xsl.dll
283.5KB
ext/php_zend_test.dll
74KB
ext/php_zip.dll
380KB
glib-2.dll
1.54MB
gmodule-2.dll
18.5KB
icudt72.dll
29.81MB
icuin72.dll
2.91MB
icuio72.dll
59.5KB
icuuc72.dll
2.17MB
lib/
-
libcrypto-3-x64.dll
4.97MB
libenchant2.dll
41.5KB
libpq.dll
283KB
libsasl.dll
205KB
libsodium.dll
296.5KB
libsqlite3.dll
1.57MB
libssh2.dll
372KB
libssl-3-x64.dll
758.5KB
lib/enchant/
-
lib/enchant/libenchant2_hunspell.dll
464.5KB
license.txt
3.2KB
news.txt
39.63KB
nghttp2.dll
225.5KB
phar.phar.bat
43B
pharcommand.phar
64.42KB
php-cgi.exe
66.5KB
php-win.exe
37.5KB
php.exe
140.5KB
php.ini-development
73.45KB
php.ini-production
73.59KB
php8.dll
8.64MB
php8embed.lib
904.75KB
php8phpdbg.dll
238.5KB
phpdbg.exe
241KB
readme-redist-bins.txt
30.16KB
README.md
4.9KB
snapshot.txt
2.23KB

资源内容介绍

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).[![Push](https://github.com/php/php-src/actions/workflows/push.yml/badge.svg)](https://github.com/php/php-src/actions/workflows/push.yml)[![Build status](https://travis-ci.com/php/php-src.svg?branch=master)](https://travis-ci.com/github/php/php-src)[![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/php.svg)](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).

用户评论 (0)

发表评论

captcha

相关资源

NETTY教程笔记啊啊

NETTY教程笔记啊啊

3.86MB10积分

影视类前端网站:大一同学期末作业的卓越借鉴范例

影视类前端网站:大一同学期末作业的卓越借鉴范例影视类前端网站:大一同学期末作业的卓越借鉴范例 在当今数字化的时代,影视类网站以其丰富的内容和便捷的用户体验,成为了互联网领域中备受瞩目的一部分。今天,我们向广大大一同学隆重推出一款精心打造的影视类前端网站,它不仅是一份出色的期末作业成果,更是为同学们提供了极具价值的学习和借鉴资源。 这个影视类前端网站凝聚了创作者的智慧与努力,展现了扎实的专业知识和创新的设计理念。从页面布局到功能实现,每一个细节都经过了精心雕琢,旨在为用户带来流畅、舒适的观影体验。 在页面设计方面,该网站采用了简洁明了的风格,色彩搭配协调,图标和按钮清晰易懂。用户一进入网站,就能迅速找到自己感兴趣的电影或电视剧分类,无论是热门影片、经典剧集,还是最新上映的作品,都能一目了然。同时,网站还具备响应式设计,能够自适应不同设备的屏幕尺寸,无论是在电脑、平板还是手机上,都能呈现出完美的视觉效果。 在功能实现上,该网站充分考虑了用户的需求。强大的搜索功能让用户能够快速找到心仪的影视作品,精准的推荐算法则根据用户的浏览历史和偏好为其推荐个性化的内容。此外,用户还可

1.18MB35积分

影视类前端网站:大一同学期末作业的卓越借鉴范例

影视类前端网站:大一同学期末作业的卓越借鉴范例影视类前端网站:大一同学期末作业的卓越借鉴范例 在当今数字化的时代,影视类网站以其丰富的内容和便捷的用户体验,成为了互联网领域中备受瞩目的一部分。今天,我们向广大大一同学隆重推出一款精心打造的影视类前端网站,它不仅是一份出色的期末作业成果,更是为同学们提供了极具价值的学习和借鉴资源。 这个影视类前端网站凝聚了创作者的智慧与努力,展现了扎实的专业知识和创新的设计理念。从页面布局到功能实现,每一个细节都经过了精心雕琢,旨在为用户带来流畅、舒适的观影体验。 在页面设计方面,该网站采用了简洁明了的风格,色彩搭配协调,图标和按钮清晰易懂。用户一进入网站,就能迅速找到自己感兴趣的电影或电视剧分类,无论是热门影片、经典剧集,还是最新上映的作品,都能一目了然。同时,网站还具备响应式设计,能够自适应不同设备的屏幕尺寸,无论是在电脑、平板还是手机上,都能呈现出完美的视觉效果。 在功能实现上,该网站充分考虑了用户的需求。强大的搜索功能让用户能够快速找到心仪的影视作品,精准的推荐算法则根据用户的浏览历史和偏好为其推荐个性化的内容。此外,用户还可

4.04MB38积分

交易流水证明_用于材料证明_20240805_132850.zip

交易流水证明_用于材料证明_20240805_132850.zip

385.1KB34积分