About 720,000 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

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

  3. PHP For Windows: Binaries and sources Releases

    PHP 8.1 (8.1.33) Download source code [25.74MB] Download tests package (phpt) [15.43MB]

  4. PHP: Operators - Manual

    Binary operators take two values, such as the familiar arithmetical operators + (plus) and - (minus), and the majority of PHP operators fall into this category.

  5. PHP: PHP Manual - Manual

    2 days ago · PHP Manual ¶ 2025-11-13 Copyright Preface — About this manual Getting Started Introduction — What is PHP and what can it do? A simple tutorial Installation and …

  6. PHP: A simple tutorial - Manual

    Here we would like to show the very basics of PHP in a short, simple tutorial. This text only deals with dynamic web page creation with PHP, though PHP is not only capable of creating web …

  7. Documentation - PHP

    The PHP 4 and PHP 5 documentation has been removed from the manual, but archived versions still exist. For more information, please read Documentation for PHP 4 and Documentation for …

  8. PHP: Language Reference - Manual

    Errors Basics Errors in PHP 7 Exceptions Extending Exceptions Fibers Generators Generators overview Generator syntax Comparing generators with Iterator objects Attributes Attributes …

  9. 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 …

  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()); // -------------------- …