About 60 results
Open links in new tab
  1. PHP

    PHP is a popular general-purpose scripting language that powers everything from your blog to the most popular websites in the world.

  2. PHP: Downloads

    Aug 4, 2019 · PHP is a popular general-purpose scripting language that powers everything from your blog to the most popular websites in the world.

  3. Documentation - PHP

    PHP is a popular general-purpose scripting language that powers everything from your blog to the most popular websites in the world.

  4. PHP: Getting Started - Manual

    Getting Started ¶ Introduction — What is PHP and what can it do? A simple tutorial Your first PHP-enabled page Something Useful Dealing with Forms What's next?

  5. PHP: Introduction - Manual

    PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into …

  6. PHP: PHP 8.4 Release Announcement

    PHP 8.4 is a major update of the PHP language. It contains many new features, such as property hooks, asymmetric visibility, an updated DOM API, performance improvements, bug fixes, and general …

  7. PHP For Windows: Binaries and sources Releases

    PHP 8.2 (8.2.30) Download source code [26.53MB] Download tests package (phpt) [15.89MB]

  8. PHP: Operators - Manual

    A full list of PHP operators follows in the section Operator Precedence. The section also explains operator precedence and associativity, which govern exactly how expressions containing several …

  9. PHP: PHP 8.5 Release Announcement

    Nov 20, 2025 · PHP 8.5 is a major update of the PHP language, with new features including the URI Extension, Pipe Operator, and support for modifying properties while cloning.

  10. PHP: Logic - Manual

    <?php // -------------------- // foo() will never get called as those operators are short-circuit $a = (false && foo()); $b = (true || foo()); $c = (false and foo()); $d = (true or foo()); // -------------------- // "||" has a …