<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 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).
[![Build status](https://travis-ci.com/php/php-src.svg?branch=master)](https://travis-ci.com/php/php-src)
[![Build status](https://ci.appveyor.com/api/projects/status/meyur6fviaxgdwdy/branch/master?svg=true)](https://ci.appveyor.com/project/php/php-src)
[![Build Status](https://dev.azure.com/phpazuredevops/php/_apis/build/status/php.php-src?branchName=master)](https://dev.azure.com/phpazuredevops/php/_build/latest?definitionId=1&branchName=master)
[![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
Contributions are most welcome by forking the
[GitHub repository](https://github.com/php/php-src) 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 **do not** require an RFC but require a bug tracker ticket. Open a
ticket at [bugs.php.net](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
deprecated warning. get_magic_quotes_gpc can be used to detect the
magic_quotes behavior and therefore should not raise a warning at any time.
The patch removes this warning.
See [Git workflow](https://wiki.php.net/vcs/gitworkflow) for more details on the
pull request workflow.
### 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)
- [Mailinglist 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).
没有合适的资源?快使用搜索试试~ 我知道了~
VSCode开发PHP环境配置手册(PHP8.1.1+PHP-xdebug+redis)
共82个文件
dll:57个
exe:6个
txt:4个
5星 · 超过95%的资源 需积分: 5 8 下载量 187 浏览量
2023-05-08
14:55:31
上传
评论 2
收藏 132.55MB ZIP 举报
温馨提示
VSCode开发PHP环境配置手册(详见:附件配置手册) 一、phpStudy中集成php8.1.1nts 1.检查phpstudy_x64是否安装在默认目录,即:D:\phpstudy_pro\ 2.复制php8.1.1nts文件夹到:D:\phpstudy_pro\Extensions\php 备注:如果非默认目录,可自行修改php.ini文件,将文件中的:extension_dir = "D:\phpstudy_pro\Extensions\php\php8.0.14nts\ext" 调整成对应的目录即可。 3.效果展示 二、VSCode支持PHP_xdebug配置 1.添加PHP所需的xdebug库 将xdebug库放入ext插件目录 备注:压缩包中的PHP8.1.1默认已经集成了php_xdebug-3.2.1-8.1-vs16-nts-x86_64.dll文件并已重命名为php_xdebug.dll。 2.配置用户环境变量 将PHP8.1所在目录添加进用户变量:D:\phpstudy_pro\Extensions\php\php8.1.1nts,如下图: ……
资源推荐
资源详情
资源评论
收起资源包目录
php8.1.1-redis-xdebug-for-phpstudy_x64_8.1.1.3.zip (82个子文件)
php8.1.1-redis-xdebug-for-phpstudy_x64_8.1.1.3
phpStudy_64.zip 77.71MB
redis_ext
php_igbinary-3.2.7-8.1-nts-vs16-x64.zip 147KB
php_redis-5.3.7rc2-8.1-nts-vs16-x64.zip 658KB
LICENSE 123B
php8.1.1nts
php8phpdbg.dll 239KB
lib
enchant
libenchant2_hunspell.dll 465KB
phar.phar.bat 42B
deplister.exe 134KB
news.txt 14KB
php-win.exe 39KB
libsqlite3.dll 1.54MB
readme-redist-bins.txt 28KB
libenchant2.dll 42KB
snapshot.txt 2KB
icuuc70.dll 2.14MB
pharcommand.phar 64KB
php.ini 71KB
gmodule-2.dll 18KB
libsasl.dll 190KB
php-cgi.exe 68KB
icuin70.dll 2.88MB
extras
ssl
openssl.cnf 11KB
php8.dll 8.69MB
glib-2.dll 1.35MB
php.ini-development 71KB
libpq.dll 276KB
libcrypto-1_1-x64.dll 3.31MB
ext
php_imap.dll 916KB
php_tidy.dll 736KB
php_curl.dll 582KB
php_xdebug-3.2.1-8.1-vs16-nts-x86_64.dll 286KB
php_intl.dll 348KB
php_sodium.dll 85KB
php_pdo_sqlite.dll 29KB
php_pdo_oci.dll 37KB
php_pgsql.dll 98KB
php_shmop.dll 18KB
php_fileinfo.dll 6.79MB
php_ffi.dll 155KB
php_gmp.dll 320KB
php_sqlite3.dll 50KB
php_mbstring.dll 1.41MB
php_sockets.dll 76KB
php_sysvshm.dll 19KB
php_snmp.dll 413KB
php_pdo_odbc.dll 30KB
php_pdo_mysql.dll 31KB
php_ftp.dll 62KB
php_opcache.dll 779KB
php_enchant.dll 26KB
php_com_dotnet.dll 92KB
php_zend_test.dll 39KB
php_openssl.dll 140KB
php_soap.dll 246KB
php_ldap.dll 251KB
php_xsl.dll 287KB
php_dba.dll 151KB
php_oci8_19.dll 137KB
php_exif.dll 72KB
php_bz2.dll 86KB
php_gd.dll 9.22MB
php_pdo_pgsql.dll 43KB
php_odbc.dll 64KB
php_mysqli.dll 115KB
php_gettext.dll 55KB
php_pdo_firebird.dll 33KB
libssh2.dll 369KB
icudt70.dll 28.1MB
dev
php8.lib 866KB
libsodium.dll 297KB
php.exe 139KB
php8embed.lib 898KB
license.txt 3KB
README.md 5KB
icuio70.dll 60KB
nghttp2.dll 207KB
phpdbg.exe 241KB
libssl-1_1-x64.dll 672KB
php.ini-production 71KB
VSCode开发PHP环境配置手册(PHP8.1.1+PHP_xdebug+redis).docx 965KB
VC_redist.x64--Visual Studio 2015、2017、2019 和 2022 年.exe 24.11MB
README.md 2KB
共 82 条
- 1
moaol
- 粉丝: 0
- 资源: 6
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
- 1
- 2
前往页