About 690,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

    1 day 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 …

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

  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 …

  7. PHP: PHP 8.3.0 Release Announcement

    PHP 8.3 is a major update of the PHP language. It contains many new features, such as explicit typing of class constants, deep-cloning of readonly properties and additions to the …

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

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

  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.