php/php-src
This is an external open-source GitHub repository imported into the WOCSOL Marketplace for discovery. The original repository owner is the primary creator.
Repository Details
Repository Description
The PHP Interpreter
The PHP Interpreter
<div align="center"> <a href="https://www.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 [Modified BSD License](LICENSE) (SPDX-License-Identifier: `BSD-3-Clause`). [](https://github.com/php/php-src/actions/workflows/test.yml) [](https://issues.oss-fuzz.com/issues?q=project:php) ## Documentation The PHP manual is available at [php.net/docs](https://www.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://www.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: ```shell sudo apt install -y pkg-config build-essential autoconf bison re2c libxml2-dev libsqlite3-dev ``` On Fedora, you can install these using: ```shell sudo dnf install re2c bison autoconf make ccache libxml2-devel sqlite-devel ``` On MacOS, you ca
Related Repositories
Product Discussion
Ask questions or discuss this product. New comments are reviewed before publishing.
Loading comments...