About 689,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. 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 Manual

    1 day ago · PHP Manual ¶ 2026-01-01 Copyright Preface — About this manual Getting Started Introduction — What is PHP and what can it do? A simple tutorial Installation and Configuration …

  5. PHP For Windows: Binaries and sources Releases

    PHP 8.5 (8.5.1) Download source code [31.59MB] Download tests package (phpt) [18MB]

  6. PHP: Comparison - Manual

    PHP's behaviour when using more than one unparenthesized ternary operator within a single expression is non-obvious compared to other languages. Indeed prior to PHP 8.0.0, ternary expressions were …

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

  8. PHP: The Basics - Manual

    First, think of variables in PHP as data slots. Each one is a name that points to a data slot that can hold a value that is one of the basic data types: a number, a string, a boolean, etc.

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

  10. PHP: Assignment - Manual

    An exception to the usual assignment by value behaviour within PHP occurs with object s, which are assigned by reference. Objects may be explicitly copied via the clone keyword.