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: PHP Manual - Manual

    2 days ago · Migrating from PHP 7.0.x to PHP 7.1.x Migrating from PHP 5.6.x to PHP 7.0.x Migrating from PHP 5.5.x to PHP 5.6.x Debugging in PHP Configure options php.ini directives Extension …

  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

    Comparison operators, as their name implies, allow you to compare two values. You may also be interested in viewing the type comparison tables, as they show examples of various type related …

  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

    Logical Operators ¶ ... The reason for the two different variations of "and" and "or" operators is that they operate at different precedences. (See Operator Precedence.) Example #1 Logical operators illustrated

  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.