首页下载资源行业研究php-8.3.10-nts-Win32-vs16-x64.zip

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

OldLiu00130.67MB需要积分:1

资源文件列表:

php-8.3.10-nts-Win32-vs16-x64.zip 大约有82个文件
  1. deplister.exe 134.5KB
  2. dev/
  3. dev/php8.lib 871.23KB
  4. ext/
  5. extras/
  6. extras/ssl/
  7. extras/ssl/legacy.dll 163KB
  8. extras/ssl/openssl.cnf 12.42KB
  9. ext/php_bz2.dll 85.5KB
  10. ext/php_com_dotnet.dll 91KB
  11. ext/php_curl.dll 687.5KB
  12. ext/php_dba.dll 151.5KB
  13. ext/php_dl_test.dll 15.5KB
  14. ext/php_enchant.dll 25.5KB
  15. ext/php_exif.dll 71.5KB
  16. ext/php_ffi.dll 157.5KB
  17. ext/php_fileinfo.dll 7.69MB
  18. ext/php_ftp.dll 62KB
  19. ext/php_gd.dll 9.22MB
  20. ext/php_gettext.dll 54KB
  21. ext/php_gmp.dll 320KB
  22. ext/php_imap.dll 937.5KB
  23. ext/php_intl.dll 437.5KB
  24. ext/php_ldap.dll 253KB
  25. ext/php_mbstring.dll 1.52MB
  26. ext/php_mysqli.dll 117KB
  27. ext/php_oci8_19.dll 138.5KB
  28. ext/php_odbc.dll 65.5KB
  29. ext/php_opcache.dll 789.5KB
  30. ext/php_openssl.dll 150.5KB
  31. ext/php_pdo_firebird.dll 32KB
  32. ext/php_pdo_mysql.dll 29.5KB
  33. ext/php_pdo_oci.dll 36KB
  34. ext/php_pdo_odbc.dll 29.5KB
  35. ext/php_pdo_pgsql.dll 43.5KB
  36. ext/php_pdo_sqlite.dll 28.5KB
  37. ext/php_pgsql.dll 97.5KB
  38. ext/php_shmop.dll 17.5KB
  39. ext/php_snmp.dll 419.5KB
  40. ext/php_soap.dll 251KB
  41. ext/php_sockets.dll 77KB
  42. ext/php_sodium.dll 92.5KB
  43. ext/php_sqlite3.dll 56.5KB
  44. ext/php_sysvshm.dll 18.5KB
  45. ext/php_tidy.dll 736KB
  46. ext/php_xsl.dll 283.5KB
  47. ext/php_zend_test.dll 74KB
  48. ext/php_zip.dll 380KB
  49. glib-2.dll 1.54MB
  50. gmodule-2.dll 18.5KB
  51. icudt72.dll 29.81MB
  52. icuin72.dll 2.91MB
  53. icuio72.dll 59.5KB
  54. icuuc72.dll 2.17MB
  55. lib/
  56. libcrypto-3-x64.dll 4.97MB
  57. libenchant2.dll 41.5KB
  58. libpq.dll 283KB
  59. libsasl.dll 205KB
  60. libsodium.dll 296.5KB
  61. libsqlite3.dll 1.57MB
  62. libssh2.dll 372KB
  63. libssl-3-x64.dll 758.5KB
  64. lib/enchant/
  65. lib/enchant/libenchant2_hunspell.dll 464.5KB
  66. license.txt 3.2KB
  67. news.txt 39.63KB
  68. nghttp2.dll 225.5KB
  69. phar.phar.bat 43B
  70. pharcommand.phar 64.42KB
  71. php-cgi.exe 66.5KB
  72. php-win.exe 37.5KB
  73. php.exe 140.5KB
  74. php.ini-development 73.45KB
  75. php.ini-production 73.59KB
  76. php8.dll 8.64MB
  77. php8embed.lib 904.75KB
  78. php8phpdbg.dll 238.5KB
  79. phpdbg.exe 241KB
  80. readme-redist-bins.txt 30.16KB
  81. README.md 4.9KB
  82. snapshot.txt 2.23KB

资源介绍:

php-8.3.10-nts-Win32-vs16-x64.zip
PHP
# The PHP Interpreter PHP is a popular general-purpose scripting language that is especially suited to web development. Fast, flexible and pragmatic, PHP powers everything from your blog 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) ## Documentation The PHP manual is available at [php.net/docs](https://php.net/docs). ## Installation ### Prebuilt packages and binaries Prebuilt 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. For a 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-dev On Fedora, you can install these using: sudo dnf install re2c bison autoconf make libtool ccache libxml2-devel sqlite-devel Generate configure: ./buildconf Configure your build. `--enable-debug` is recommended for development, see `./configure --help` for a full list of options. # For development ./configure --enable-debug # For production ./configure Build PHP. To speed up the build, specify the maximum number of jobs using `-j`: make -j4 The number of jobs should usually match the number of available cores, which can be determined using `nproc`. ## Testing PHP source code PHP ships with an extensive test suite, the command `make test` is used after successful 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 test Shall run `make test` with a maximum of 4 concurrent jobs: Generally the maximum number of jobs should not exceed the number of cores available. The [qa.php.net](https://qa.php.net) site provides more detailed info about testing and quality assurance. ## Installing PHP built from source After a successful build (and test), PHP may be installed with: make install Depending on your permissions and prefix, `make install` may need super user permissions. ## PHP extensions Extensions provide additional functionality on top of PHP. PHP consists of many essential bundled extensions. Additional extensions can be found in the PHP Extension Community Library - [PECL](https://pecl.php.net). ## Contributing The PHP source code is located in the Git repository at [github.com/php/php-src](https://github.com/php/php-src). Contributions are most welcome by forking the repository and sending a pull request. 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 [Request for comments - RFC](https://wiki.php.net/rfc) and [Voting on PHP features](https://wiki.php.net/rfc/voting) for more information on the process. Bug fixes don't require an RFC. If the bug has a GitHub issue, reference it in the 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 warning See [Git workflow](https://wiki.php.net/vcs/gitworkflow) for details on how pull requests are merged. ### Guidelines for contributors See further documents in the repository for more information on how to contribute: - [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) ## Credits For the list of people who've put work into PHP, please see the [PHP credits page](https://php.net/credits.php).
100+评论
captcha