[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-1239":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":16,"stars7d":17,"stars30d":18,"stars90d":16,"forks30d":16,"starsTrendScore":19,"compositeScore":20,"rankGlobal":10,"rankLanguage":10,"license":21,"archived":22,"fork":22,"defaultBranch":23,"hasWiki":22,"hasPages":24,"topics":25,"createdAt":10,"pushedAt":10,"updatedAt":26,"readmeContent":27,"aiSummary":28,"trendingCount":16,"starSnapshotCount":16,"syncStatus":19,"lastSyncTime":29,"discoverSource":30},1239,"php-src","php\u002Fphp-src","php","The PHP Interpreter","https:\u002F\u002Fwww.php.net",null,"C",40139,8067,1347,964,0,14,115,2,45,"BSD 3-Clause \"New\" or \"Revised\" License",false,"master",true,[],"2026-06-12 02:00:25","\u003Cdiv align=\"center\">\n    \u003Ca href=\"https:\u002F\u002Fwww.php.net\">\n        \u003Cimg\n            alt=\"PHP\"\n            src=\"https:\u002F\u002Fwww.php.net\u002Fimages\u002Flogos\u002Fnew-php-logo.svg\"\n            width=\"150\">\n    \u003C\u002Fa>\n\u003C\u002Fdiv>\n\n# The PHP Interpreter\n\nPHP is a popular general-purpose scripting language that is especially suited to\nweb development. Fast, flexible and pragmatic, PHP powers everything from your\nblog to the most popular websites in the world.\n\nPHP is distributed under the [Modified BSD License](LICENSE)\n(SPDX-License-Identifier: `BSD-3-Clause`).\n\n[![Test](https:\u002F\u002Fgithub.com\u002Fphp\u002Fphp-src\u002Factions\u002Fworkflows\u002Ftest.yml\u002Fbadge.svg)](https:\u002F\u002Fgithub.com\u002Fphp\u002Fphp-src\u002Factions\u002Fworkflows\u002Ftest.yml)\n[![Fuzzing Status](https:\u002F\u002Foss-fuzz-build-logs.storage.googleapis.com\u002Fbadges\u002Fphp.svg)](https:\u002F\u002Fissues.oss-fuzz.com\u002Fissues?q=project:php)\n\n## Documentation\n\nThe PHP manual is available at [php.net\u002Fdocs](https:\u002F\u002Fwww.php.net\u002Fdocs).\n\n## Installation\n\n### Prebuilt packages and binaries\n\nPrebuilt packages and binaries can be used to get up and running fast with PHP.\n\nFor Windows, the PHP binaries can be obtained from\n[windows.php.net](https:\u002F\u002Fwindows.php.net). After extracting the archive the\n`*.exe` files are ready to use.\n\nFor other systems, see the [installation chapter](https:\u002F\u002Fwww.php.net\u002Finstall).\n\n### Building PHP source code\n\n*For Windows, see [Build your own PHP on Windows](https:\u002F\u002Fwiki.php.net\u002Finternals\u002Fwindows\u002Fstepbystepbuild_sdk_2).*\n\nFor a minimal PHP build from Git, you will need autoconf, bison, and re2c. For\na default build, you will additionally need libxml2 and libsqlite3.\n\nOn Ubuntu, you can install these using:\n\n```shell\nsudo apt install -y pkg-config build-essential autoconf bison re2c libxml2-dev libsqlite3-dev\n```\n\nOn Fedora, you can install these using:\n\n```shell\nsudo dnf install re2c bison autoconf make ccache libxml2-devel sqlite-devel\n```\n\nOn MacOS, you can install these using `brew`:\n\n```shell\nbrew install autoconf bison re2c libiconv libxml2 sqlite\n```\n\nor with `MacPorts`:\n\n```shell\nsudo port install autoconf bison re2c libiconv libxml2 sqlite3\n```\n\nGenerate configure:\n\n```shell\n.\u002Fbuildconf\n```\n\nConfigure your build. `--enable-debug` is recommended for development, see\n`.\u002Fconfigure --help` for a full list of options.\n\n```shell\n# For development\n.\u002Fconfigure --enable-debug\n# For production\n.\u002Fconfigure\n```\n\nBuild PHP. To speed up the build, specify the maximum number of jobs using the\n`-j` argument:\n\n```shell\nmake -j4\n```\n\nThe number of jobs should usually match the number of available cores, which\ncan be determined using `nproc`.\n\n## Testing PHP source code\n\nPHP ships with an extensive test suite, the command `make test` is used after\nsuccessful compilation of the sources to run this test suite.\n\nIt is possible to run tests using multiple cores by setting `-jN` in\n`TEST_PHP_ARGS` or `TESTS`:\n\n```shell\nmake TEST_PHP_ARGS=-j4 test\n```\n\nShall run `make test` with a maximum of 4 concurrent jobs: Generally the maximum\nnumber of jobs should not exceed the number of cores available.\n\nUse the `TEST_PHP_ARGS` or `TESTS` variable to test only specific directories:\n\n```shell\nmake TESTS=tests\u002Flang\u002F test\n```\n\nThe [qa.php.net](https:\u002F\u002Fqa.php.net) site provides more detailed info about\ntesting and quality assurance.\n\n## Installing PHP built from source\n\nAfter a successful build (and test), PHP may be installed with:\n\n```shell\nmake install\n```\n\nDepending on your permissions and prefix, `make install` may need superuser\npermissions.\n\n## PHP extensions\n\nExtensions provide additional functionality on top of PHP. PHP consists of many\nessential bundled extensions. Additional extensions can be found in the PHP\nExtension Community Library - [PECL](https:\u002F\u002Fpecl.php.net).\n\n## Contributing\n\nThe PHP source code is located in the Git repository at\n[github.com\u002Fphp\u002Fphp-src](https:\u002F\u002Fgithub.com\u002Fphp\u002Fphp-src). Contributions are most\nwelcome by forking the repository and sending a pull request.\n\nDiscussions are done on GitHub, but depending on the topic can also be relayed\nto the official PHP developer mailing list internals@lists.php.net.\n\nNew features require an RFC and must be accepted by the developers. See\n[Request for comments - RFC](https:\u002F\u002Fwiki.php.net\u002Frfc) and\n[Voting on PHP features](https:\u002F\u002Fwiki.php.net\u002Frfc\u002Fvoting) for more information\non the process.\n\nBug fixes don't require an RFC. If the bug has a GitHub issue, reference it in\nthe commit message using `GH-NNNNNN`. Use `#NNNNNN` for tickets in the old\n[bugs.php.net](https:\u002F\u002Fbugs.php.net) bug tracker.\n\n    Fix GH-7815: php_uname doesn't recognise latest Windows versions\n    Fix #55371: get_magic_quotes_gpc() throws deprecation warning\n\nSee [Git workflow](https:\u002F\u002Fwiki.php.net\u002Fvcs\u002Fgitworkflow) for details on how pull\nrequests are merged.\n\n### Guidelines for contributors\n\nSee further documents in the repository for more information on how to\ncontribute:\n\n- [Contributing to PHP](\u002FCONTRIBUTING.md)\n- [PHP coding standards](\u002FCODING_STANDARDS.md)\n- [Internal documentation](https:\u002F\u002Fphp.github.io\u002Fphp-src\u002F)\n- [Mailing list rules](\u002Fdocs\u002Fmailinglist-rules.md)\n- [PHP release process](\u002Fdocs\u002Frelease-process.md)\n\n## Credits\n\nFor the list of people who've put work into PHP, please see the\n[PHP credits page](https:\u002F\u002Fwww.php.net\u002Fcredits.php).\n","php\u002Fphp-src 是 PHP 解释器的源代码项目，主要使用 C 语言编写。它提供了一种快速、灵活且实用的通用脚本语言，特别适用于 Web 开发。PHP 的核心功能包括强大的字符串处理能力、广泛的数据库支持以及丰富的标准库。该项目具备高度可扩展性，支持多种操作系统，并通过持续集成和模糊测试确保代码质量。无论是个人博客还是高流量网站，PHP 都能胜任其后端开发需求，尤其适合需要高效处理动态内容生成的应用场景。此外，PHP 社区活跃，提供了详尽的文档和多种安装方式以满足不同用户的需求。","2026-06-11 02:42:31","top_all"]