fbpx
Wikipedia

PHP

PHP is a general-purpose scripting language geared towards web development.[8] It was originally created by Danish-Canadian programmer Rasmus Lerdorf in 1993 and released in 1995.[9][10] The PHP reference implementation is now produced by the PHP Group.[11] PHP was originally an abbreviation of Personal Home Page,[12][13] but it now stands for the recursive initialism PHP: Hypertext Preprocessor.[14]

PHP
ParadigmMulti-paradigm: imperative, functional, object-oriented, procedural, reflective
Designed byRasmus Lerdorf
DeveloperThe PHP Development Team, Zend Technologies, PHP Foundation
First appeared8 June 1995; 28 years ago (1995-06-08)[1][2]
Stable release
8.3.6 / 11 April 2024; 3 days ago (2024-04-11)[3]
Typing disciplineDynamic, weak, gradual[4]
Implementation languageC (primarily; some components C++)
OSUnix-like, Windows, macOS, IBM i, OpenVMS, IBM Z
Licensedual licensed GNU General Public License version 2 or any later version and PHP License for PHP versions 3.0 or earlier.[5] Only PHP License (most of Zend engine under Zend Engine License) for 3.01x and later versions.
Filename extensions.php,.phar,.phtml,.pht,.phps
Websitewww.php.net
Major implementations
Zend Engine, HHVM, PeachPie, Quercus, Parrot
Influenced by
Perl, C, C++, Java,[6] Tcl,[2] JavaScript[7]
Influenced
Hack, JSP, ASP, React JS
  • PHP Programming at Wikibooks

PHP code is usually processed on a web server by a PHP interpreter implemented as a module, a daemon or a Common Gateway Interface (CGI) executable. On a web server, the result of the interpreted and executed PHP code—which may be any type of data, such as generated HTML or binary image data—would form the whole or part of an HTTP response. Various web template systems, web content management systems, and web frameworks exist that can be employed to orchestrate or facilitate the generation of that response. Additionally, PHP can be used for many programming tasks outside the web context, such as standalone graphical applications[15] and drone control.[16] PHP code can also be directly executed from the command line.

The standard PHP interpreter, powered by the Zend Engine, is free software released under the PHP License. PHP has been widely ported and can be deployed on most web servers on a variety of operating systems and platforms.[17]

The PHP language has evolved without a written formal specification or standard, with the original implementation acting as the de facto standard that other implementations aimed to follow.

W3Techs reports that as of 23 March 2024 (the four months after the PHP 8.3 release), PHP is used by 76.4% of all websites whose programming language could be determined, and 57.2% thereof use PHP 7 which is outdated and known to be insecure.[18] Additionally, PHP 8.0, is no longer supported,[19] meaning the vast majority of PHP users utilize outdated versions, and well over half of all websites, PHP-using or not (whose programming language could be determined) are insecure.

History edit

 
 
 
Rasmus Lerdorf, creator of PHP; and Andi Gutmans and Zeev Suraski, creators of the Zend Engine

Early history edit

PHP development began in 1993[9] when Rasmus Lerdorf wrote several Common Gateway Interface (CGI) programs in C,[20][21] which he used to maintain his personal homepage. He extended them to work with web forms and to communicate with databases, and called this implementation "Personal Home Page/Forms Interpreter" or PHP/FI.

An example of the early PHP syntax:[22]

<!--include /text/header.html--> <!--getenv HTTP_USER_AGENT--> <!--if substr $exec_result Mozilla--> Hey, you are using Netscape!<p> <!--endif--> <!--sql database select * from table where user='$username'--> <!--ifless $numentries 1--> Sorry, that record does not exist<p> <!--endif exit--> Welcome <!--$user-->!<p> You have <!--$index:0--> credits left in your account.<p> <!--include /text/footer.html--> 

PHP/FI could be used to build simple, dynamic web applications. To accelerate bug reporting and improve the code, Lerdorf initially announced the release of PHP/FI as "Personal Home Page Tools (PHP Tools) version 1.0" on the Usenet discussion group comp.infosystems.www.authoring.cgi on 8 June 1995.[1][23] This release included basic functionality such as Perl-like variables, form handling, and the ability to embed HTML. By this point, the syntax had changed to resemble that of Perl, but was simpler, more limited, and less consistent.[12][11]

Early PHP was never intended to be a new programming language; rather, it grew organically, with Lerdorf noting in retrospect: "I don't know how to stop it [...] there was never any intent to write a programming language [...] I have absolutely no idea how to write a programming language [...] I just kept adding the next logical step on the way."[24] A development team began to form and, after months of work and beta testing, officially released PHP/FI 2 in November 1997.[25][citation needed]

The fact that PHP was not originally designed, but instead was developed organically has led to inconsistent naming of functions and inconsistent ordering of their parameters.[26] In some cases, the function names were chosen to match the lower-level libraries which PHP was "wrapping",[27] while in some very early versions of PHP the length of the function names was used internally as a hash function, so names were chosen to improve the distribution of hash values.[28]

PHP 3 and 4 edit

 
This is an example of PHP code for the WordPress content management system.

Zeev Suraski and Andi Gutmans rewrote the parser in 1997 and formed the base of PHP 3, changing the language's name to the recursive acronym PHP: Hypertext Preprocessor.[11][29] Afterwards, public testing of PHP 3 began, and the official launch came in June 1998. Suraski and Gutmans then started a new rewrite of PHP's core, producing the Zend Engine in 1999.[30] They also founded Zend Technologies in Ramat Gan, Israel.[11]

On 22 May 2000, PHP 4, powered by the Zend Engine 1.0, was released.[11] By August 2008, this branch had reached version 4.4.9. PHP 4 is now no longer under development and nor are any security updates planned to be released.[31][32]

PHP 5 edit

On 1 July 2004, PHP 5 was released, powered by the new Zend Engine II.[11] PHP 5 included new features such as improved support for object-oriented programming, the PHP Data Objects (PDO) extension (which defines a lightweight and consistent interface for accessing databases), and numerous performance enhancements.[33] In 2008, PHP 5 became the only stable version under development. Late static binding had been missing from previous versions of PHP, and was added in version 5.3.[34][35]

Many high-profile open-source projects ceased to support PHP 4 in new code from February 5, 2008, because of the GoPHP5 initiative,[36] provided by a consortium of PHP developers promoting the transition from PHP 4 to PHP 5.[37][38]

Over time, PHP interpreters became available on most existing 32-bit and 64-bit operating systems, either by building them from the PHP source code or by using pre-built binaries.[39] For PHP versions 5.3 and 5.4, the only available Microsoft Windows binary distributions were 32-bit IA-32 builds,[40][41] requiring Windows 32-bit compatibility mode while using Internet Information Services (IIS) on a 64-bit Windows platform. PHP version 5.5 made the 64-bit x86-64 builds available for Microsoft Windows.[42]

Official security support for PHP 5.6 ended on 31 December 2018.[43]

PHP 6 and Unicode edit

PHP received mixed reviews due to lacking native Unicode support at the core language level.[44][45] In 2005, a project headed by Andrei Zmievski was initiated to bring native Unicode support throughout PHP, by embedding the International Components for Unicode (ICU) library, and representing text strings as UTF-16 internally.[46] Since this would cause major changes both to the internals of the language and to user code, it was planned to release this as version 6.0 of the language, along with other major features then in development.[47]

However, a shortage of developers who understood the necessary changes, and performance problems arising from conversion to and from UTF-16, which is rarely used in a web context, led to delays in the project.[48] As a result, a PHP 5.3 release was created in 2009, with many non-Unicode features back-ported from PHP 6, notably namespaces. In March 2010, the project in its current form was officially abandoned, and a PHP 5.4 release was prepared to contain most remaining non-Unicode features from PHP 6, such as traits and closure re-binding.[49] Initial hopes were that a new plan would be formed for Unicode integration, but by 2014 none had been adopted.[citation needed]

PHP 7 edit

During 2014 and 2015, a new major PHP version was developed, PHP 7. The numbering of this version involved some debate among internal developers.[50] While the PHP 6 Unicode experiments had never been released, several articles and book titles referenced the PHP 6 names, which might have caused confusion if a new release were to reuse the name.[51] After a vote, the name PHP 7 was chosen.[52]

The foundation of PHP 7 is a PHP branch that was originally dubbed PHP next generation (phpng). It was authored by Dmitry Stogov, Xinchen Hui and Nikita Popov,[53] and aimed to optimize PHP performance by refactoring the Zend Engine while retaining near-complete language compatibility.[54] By 14 July 2014, WordPress-based benchmarks, which served as the main benchmark suite for the phpng project, showed an almost 100% increase in performance. Changes from phpng make it easier to improve performance in future versions, as more compact data structures and other changes are seen as better suited for a successful migration to a just-in-time (JIT) compiler.[55] Because of the significant changes, the reworked Zend Engine was called Zend Engine 3, succeeding Zend Engine 2 used in PHP 5.[56]

Because of the major internal changes in phpng, it must receive a new major version number of PHP, rather than a minor PHP 5 release, according to PHP's release process.[57] Major versions of PHP are allowed to break backward-compatibility of code and therefore PHP 7 presented an opportunity for other improvements beyond phpng that require backward-compatibility breaks.[citation needed] In particular, it involved the following changes:

  • Many fatal or recoverable-level legacy PHP error mechanisms were replaced with modern object-oriented exceptions.[58]
  • The syntax for variable dereferencing was reworked to be internally more consistent and complete, allowing the use of the operators ->, [], (),{}, and ::, with arbitrary meaningful left-side expressions.[59]
  • Support for legacy PHP 4-style constructor methods was deprecated.[60]
  • The behavior of the foreach statement was changed to be more predictable.[61]
  • Constructors for the few classes built-in to PHP which returned null upon failure were changed to throw an exception instead, for consistency.[62]
  • Several unmaintained or deprecated server application programming interfaces (SAPIs) and extensions were removed from the PHP core, most notably the legacy mysql extension.[63]
  • The behavior of the list() operator was changed to remove support for strings.[64]
  • Support was removed for legacy ASP-style delimiters <% and %> and <script language="php"> ... </script>.[65]
  • An oversight allowing a switch statement to have multiple default clauses was fixed.[66]
  • Support for hexadecimal number support in some implicit conversions from strings to number types was removed.[67]
  • The left-shift and right-shift operators were changed to behave more consistently across platforms.[68]
  • Conversions between floating-point numbers and integers were changed (e.g. infinity changed to convert to zero) and implemented more consistently across platforms.[68][69]

PHP 7 also included new language features. Most notably, it introduced return type declarations for functions[70] which complement the existing parameter type declarations, and support for the scalar types (integer, float, string, and boolean) in parameter and return type declarations.[71]

PHP 8 edit

PHP 8 was released on 26 November 2020, and is currently the second-most used PHP major version. PHP 8 is a major version and has breaking changes from previous versions.[72][73] New features and notable changes include:

Just-in-time compilation edit

Just-in-time compilation is supported in PHP 8.[74]

PHP 8's JIT compiler can provide substantial performance improvements for some use cases,[75][76] while PHP developer Nikita Popov stated that the performance improvements for most websites will be less substantial than the upgrade from PHP 5 to PHP 7.[77] Substantial improvements are expected more for mathematical-type operations than for common web-development use cases.[77] Additionally, the JIT compiler provides the future potential to move some code from C to PHP, due to the performance improvements for some use cases.[78]

Addition of the match expression edit

PHP 8 introduced the match expression.[79] The match expression is conceptually similar to a switch statement and is more compact for some use cases.[80] Because match is an expression, its result can be assigned to a variable or returned from a function.[81]

Type changes and additions edit

PHP 8 introduced union types, a new static return type, and a new mixed type.[72]

"Attributes", often referred to as "annotations" in other programming languages, were added in PHP 8, which allow metadata to be added to classes.[72]

throw was changed from being a statement to being an expression.[82] This allows exceptions to be thrown in places that were not previously possible.[72]

Syntax changes and additions edit

PHP 8 includes changes to allow alternate, more concise, or more consistent syntaxes in a number of scenarios. For example, the nullsafe operator is similar to the null coalescing operator ??, but used when calling methods.[83] The following code snippet will not throw an error if getBirthday() returns null:

$human_readable_date = $user->getBirthday()?->diffForHumans(); 

Constructor property promotion has been added as "syntactic sugar," allowing class properties to be set automatically when parameters are passed into a class constructor.[72] This reduces the amount of boilerplate code that must be written.[citation needed]

Other minor changes include support for use of ::class on objects, which serves as an alternative for the use of get_class();[72] non-capturing catches in try-catch blocks; variable syntax tweaks to resolve inconsistencies; support for named arguments; and support for trailing commas in parameter lists, which adds consistency with support for trailing commas in other contexts, such as in arrays.[citation needed]

Standard library changes and additions edit

  • Weak maps were added in PHP 8. A WeakMap holds references to objects, but these references do not prevent such objects from being garbage collected.[84] This can provide performance improvements in scenarios where data is being cached; this is of particular relevance for object–relational mappings (ORM).[72]
  • Various adjustments to interfaces, such as adding support for creating DateTime objects from interfaces, and the addition of a Stringable interface that can be used for type hinting.[citation needed]
  • Various new functions including str_contains(), str_starts_with(), and str_ends_with();[85] fdiv(); get_debug_type(); and get_resource_id()[citation needed]
  • Object implementation of token_get_all()[citation needed]

Additional changes edit

  • Type annotations were also added into PHP's C source code itself to allow internal functions and methods to have "complete type information in reflection."[86]
  • Inheritance with private methods[citation needed]
  • Abstract methods in traits improvements[citation needed]

PHP 8.1 edit

PHP 8.1 was released on November 25, 2021.[87] It added support for enumerations (also called "enums"), declaring properties as readonly (which prevents modification of the property after initialization), and array unpacking with string keys. The new never type can be used to indicate that a function does not return.[88]

PHP 8.2 edit

PHP 8.2 was released on December 8, 2022.[89] New in this release are readonly classes (whose instance properties are implicitly readonly), disjunctive normal form (DNF) types, and the random extension, which provides a pseudorandom number generator with an object-oriented API.[90]

Release history edit

Version Release date Supported until[91] Notes
Old version, no longer maintained: 1.0 8 June 1995 Officially called "Personal Home Page Tools (PHP Tools)". This is the first use of the name "PHP".[11]
Old version, no longer maintained: 2.0 1 November 1997 Officially called "PHP/FI 2.0". This is the first release that could actually be characterised as PHP, being a standalone language with many features that have endured to the present day.
Old version, no longer maintained: 3.0 6 June 1998 20 October 2000[91] Development moves from one person to multiple developers. Zeev Suraski and Andi Gutmans rewritten the base for this version.[11]
Old version, no longer maintained: 4.0 22 May 2000[92] 23 June 2001[91] Added more advanced two-stage parse/execute tag-parsing system called the Zend engine.[93]
Old version, no longer maintained: 4.1 10 December 2001[94] 12 March 2002[91] Introduced "superglobals" ($_GET, $_POST, $_SESSION, etc.)[93]
Old version, no longer maintained: 4.2 22 April 2002[95] 6 September 2002[91] Disabled register_globals by default. Data received over the network is not inserted directly into the global namespace anymore, closing possible security holes in applications.[93]
Old version, no longer maintained: 4.3 27 December 2002[96] 31 March 2005[91] Introduced the command-line interface (CLI), to supplement the CGI.[93][97]
Old version, no longer maintained: 4.4 11 July 2005[98] 7 August 2008[91] Fixed a memory corruption bug, which required breaking binary compatibility with extensions compiled against PHP version 4.3.x.[99]
Old version, no longer maintained: 5.0 13 July 2004[100] 5 September 2005[91] Zend Engine II with a new object model.[101]
Old version, no longer maintained: 5.1 24 November 2005[102] 24 August 2006[91] Performance improvements with the introduction of compiler variables in re-engineered PHP Engine.[101] Added PHP Data Objects (PDO) as a consistent interface for accessing databases.[103]
Old version, no longer maintained: 5.2 2 November 2006[104] 6 January 2011[91] Enabled the filter extension by default. Native JSON support.[101]
Old version, no longer maintained: 5.3 30 June 2009[105] 14 August 2014[91] Namespace support; late static bindings, jump label (limited goto), anonymous functions, closures, PHP archives (phar), garbage collection for circular references, improved Windows support, sqlite3, mysqlnd as a replacement for libmysql as the underlying library for the extensions that work with MySQL, fileinfo as a replacement for mime_magic for better MIME support, the Internationalization extension, and deprecation of ereg extension.
Old version, no longer maintained: 5.4 1 March 2012[106] 3 September 2015[91] Trait support, short array syntax support. Removed items: register_globals, safe_mode, allow_call_time_pass_reference, session_register(), session_unregister() and session_is_registered(). Built-in web server.[107] Several improvements to existing features, performance and reduced memory requirements.
Old version, no longer maintained: 5.5 20 June 2013[108] 10 July 2016[109] Support for generators, finally blocks for exceptions handling, OpCache (based on Zend Optimizer+) bundled in official distribution.[110]
Old version, no longer maintained: 5.6 28 August 2014[111] 31 December 2018[109] Constant scalar expressions, variadic functions, argument unpacking, new exponentiation operator, extensions of the use statement for functions and constants, new phpdbg debugger as a SAPI module, and other smaller improvements.[112]
6.x Not released Abandoned version of PHP that planned to include native Unicode support.[113][114]
Old version, no longer maintained: 7.0 3 December 2015[115] 10 January 2019[57] Zend Engine 3 (performance improvements[55] and 64-bit integer support on Windows[116]), uniform variable syntax,[59] AST-based compilation process,[117] added Closure::call(),[118] bitwise shift consistency across platforms,[119] ?? (null coalesce) operator,[120] Unicode code point escape syntax,[121] return type declarations,[70] scalar type (integer, float, string and boolean) declarations,[71] <=> "spaceship" three-way comparison operator,[122] generator delegation,[123] anonymous classes,[124] simpler and more consistently available CSPRNG API,[125] replacement of many remaining internal PHP "errors" with the more modern exceptions,[58] and shorthand syntax for importing multiple items from a namespace.[126]
Old version, no longer maintained: 7.1 1 December 2016 1 December 2019[109] iterable type,[127] nullable types,[128] void return type,[129] class constant visibility modifiers,[130] short list syntax,[131] multi-catch[132]
Old version, no longer maintained: 7.2 30 November 2017 30 November 2020[109] Object parameter and return type declaration,[133] libsodium extension,[134] abstract method overriding,[135] parameter type widening[136]
Old version, no longer maintained: 7.3 6 December 2018[137] 6 December 2021 Flexible Heredoc and Nowdoc syntax,[138] support for reference assignment and array deconstruction with list(),[139] PCRE2 support,[140] hrtime function[141]
Old version, no longer maintained: 7.4 28 November 2019[142] 28 November 2022 Typed properties 2.0,[143] preloading,[144] null-coalescing assignment operator,[145] improve openssl_random_pseudo_bytes,[146] weak references,[84] foreign function interface (FFI),[147] always available hash extension,[148] password hash registry,[149] multibyte string splitting,[150] reflection for references,[151] unbundle ext/wddx,[152] new custom object serialization mechanism[153]
Old version, no longer maintained: 8.0 26 November 2020[154] 26 November 2023 Just-In-Time (JIT) compilation,[74] arrays starting with a negative index,[155] stricter/saner language semantics (validation for abstract trait methods),[156] saner string to number comparisons,[157] saner numeric strings,[158] TypeError on invalid arithmetic/bitwise operators,[159] reclassification of various engine errors,[160] consistent type errors for internal functions,[161] fatal error for incompatible method signatures[162]), locale-independent float to string conversion,[163] variable syntax tweaks,[164] attributes,[165][166][167][168] named arguments,[169] match expression,[170] constructor property promotion,[171] union types,[172] mixed type,[173] static return type,[174] nullsafe operator,[83] non-capturing catches,[175] throw expression,[82] JSON extension is always available.[176]
Older version, yet still maintained: 8.1 25 November 2021[177] 25 November 2024 Explicit octal integer literal notation,[178] enumerations,[179] read-only properties,[180] first-class callable syntax,[181] new in initializers,[182] pure intersection types,[183] never return type,[184] final class constraints,[185] fibers[186]
Older version, yet still maintained: 8.2 8 December 2022[187] 8 December 2025 Readonly classes,[188] null, false, and true as stand-alone types,[189][190] locale-independent case conversion,[191] disjunctive normal form types,[192] constants in traits[193]
Current stable version: 8.3 23 November 2023[194] 23 November 2026 Typed class constants,[195] dynamic class constant fetch,[196] #[\Override] attribute,[197] deep-cloning of read-only properties,[198] new json_validate function,[199] randomizer additions,[200] the command-line linter supports multiple files
Future release: 8.4 21 November 2024[201] 21 November 2027
Legend:
Old version
Older version, still maintained
Latest version
Latest preview version
Future release

Beginning on 28 June 2011, the PHP Development Team implemented a timeline for the release of new versions of PHP.[57] Under this system, at least one release should occur every month. Once per year, a minor release should occur which may include new features. Every minor release should at least be supported for two years with security and bug fixes, followed by at least one year of only security fixes, for a total of a three-year release process for every minor release. No new features, unless small and self-contained, are to be introduced into a minor release during the three-year release process.

Mascot edit

 
The elePHPant, PHP mascot

The mascot of the PHP project is the elePHPant, a blue elephant with the PHP logo on its side, designed by Vincent Pontier[202] in 1998.[203] "The (PHP) letters were forming the shape of an elephant if viewed in a sideways angle."[204] The elePHPant is sometimes differently coloured when in plush toy form.[205]

Many variations of this mascot have been made over the years. Only the elePHPants based on the original design by Vincent Pontier are considered official by the community.[206] These are collectable and some of them are extremely rare.[207]

Syntax edit

 
A "Hello World" application in PHP 7.4 running on its built-in development server

The following "Hello, World!" program is written in PHP code embedded in an HTML document:

<!DOCTYPE html> <html> <head> <title>PHP "Hello, World!" program</title> </head> <body>  <p><?= 'Hello, World!' ?></p>  </body> </html> 

However, as no requirement exists for PHP code to be embedded in HTML, the simplest version of Hello, World! may be written like this, with the closing tag ?> omitted as preferred in files containing pure PHP code.[208]

<?php echo 'Hello, World!'; 

The PHP interpreter only executes PHP code within its delimiters. Anything outside of its delimiters is not processed by PHP, although the non-PHP text is still subject to control structures described in PHP code. The most common delimiters are <?php to open and ?> to close PHP sections. The shortened form <? also exists. This short delimiter makes script files less portable since support for them can be disabled in the local PHP configuration and it is therefore discouraged.[209][210] Conversely, there is no recommendation against the echo short tag <?=.[211] Prior to PHP 5.4.0, this short syntax for echo only works with the short_open_tag configuration setting enabled, while for PHP 5.4.0 and later it is always available.[212][213][209] The purpose of all these delimiters is to separate PHP code from non-PHP content, such as JavaScript code or HTML markup.[214] So the shortest "Hello, World!" program written in PHP is:

<?='Hello, World!'; 

The first form of delimiters, <?php and ?>, in XHTML and other XML documents, creates correctly formed XML processing instructions.[215] This means that the resulting mixture of PHP code and other markups in the server-side file is itself well-formed XML.

Variables are prefixed with a dollar symbol, and a type does not need to be specified in advance. PHP 5 introduced type declarations that allow functions to force their parameters to be objects of a specific class, arrays, interfaces or callback functions. However, before PHP 7, type declarations could not be used with scalar types such as integers or strings.[71]

Below is an example of how PHP variables are declared and initialized.

<?php $name = 'John'; // variable of string type being declared and initialized $age = 18; // variable of integer type being declared and initialized $height = 5.3; // variable of double type being declared and initialized echo $name . ' is ' . $height . "m tall\n"; // concatenating variables and strings echo "$name is $age years old."; // interpolating variables to string ?> 

Unlike function and class names, variable names are case-sensitive. Both double-quoted ("") and heredoc strings provide the ability to interpolate a variable's value into the string.[216] PHP treats newlines as whitespace in the manner of a free-form language, and statements are terminated by a semicolon.[217] PHP has three types of comment syntax: /* */ marks block and inline comments; // or # are used for one-line comments.[218] The echo statement is one of several facilities PHP provides to output text.[citation needed]

In terms of keywords and language syntax, PHP is similar to C-style syntax. if conditions, for and while loops and function returns are similar in syntax to languages such as C, C++, C#, Java and Perl.[citation needed]

Data types edit

PHP is loosely typed. It stores integers in a platform-dependent range, either as a 32, 64 or 128-bit signed integer equivalent to the C-language long type. Unsigned integers are converted to signed values in certain situations, which is different behaviour to many other programming languages.[219] Integer variables can be assigned using decimal (positive and negative), octal, hexadecimal, and binary notations.[citation needed]

Floating-point numbers are also stored in a platform-specific range. They can be specified using floating-point notation, or two forms of scientific notation.[220] PHP has a native Boolean type that is similar to the native Boolean types in Java and C++. Using the Boolean type conversion rules, non-zero values are interpreted as true and zero as false, as in Perl and C++.[220]

The null data type represents a variable that has no value; NULL is the only allowed value for this data type.[220]

Variables of the "resource" type represent references to resources from external sources. These are typically created by functions from a particular extension, and can only be processed by functions from the same extension; examples include file, image, and database resources.[220]

Arrays can contain elements of any type that PHP can handle, including resources, objects, and even other arrays. Order is preserved in lists of values and in hashes with both keys and values, and the two can be intermingled.[220] PHP also supports strings, which can be used with single quotes, double quotes, nowdoc or heredoc syntax.[221]

The Standard PHP Library (SPL) attempts to solve standard problems and implements efficient data access interfaces and classes.[222]

Functions edit

PHP defines a large array of functions in the core language and many are also available in various extensions; these functions are well documented online PHP documentation.[223] However, the built-in library has a wide variety of naming conventions and associated inconsistencies, as described under history above.

Custom functions may be defined by the developer:

function myAge(int $birthYear): string { // calculate the age by subtracting the birth year from the current year. $yearsOld = date('Y') - $birthYear; // return the age in a descriptive string. return $yearsOld . ($yearsOld == 1 ? ' year' : ' years'); } echo 'I am currently ' . myAge(1995) . ' old.'; 

As of 2024, the output of the above sample program is "I am currently 29 years old."

In lieu of function pointers, functions in PHP can be referenced by a string containing their name. In this manner, normal PHP functions can be used, for example, as callbacks or within function tables.[224] User-defined functions may be created at any time without being prototyped.[223][224] Functions may be defined inside code blocks, permitting a run-time decision as to whether or not a function should be defined. There is a function_exists function that determines whether a function with a given name has already been defined. Function calls must use parentheses, with the exception of zero-argument class constructor functions called with the PHP operator new, in which case parentheses are optional.[citation needed]

Since PHP 4.0.1 create_function(), a thin wrapper around eval(), allowed normal PHP functions to be created during program execution; it was deprecated in PHP 7.2 and removed in PHP 8.0[225] in favor of syntax for anonymous functions or "closures"[226] that can capture variables from the surrounding scope, which was added in PHP 5.3. Shorthand arrow syntax was added in PHP 7.4:[227]

function getAdder($x) { return fn($y) => $x + $y; } $adder = getAdder(8); echo $adder(2); // prints "10" 

In the example above, getAdder() function creates a closure using passed argument $x, which takes an additional argument $y, and returns the created closure to the caller. Such a function is a first-class object, meaning that it can be stored in a variable, passed as a parameter to other functions, etc.[228]

Unusually for a dynamically typed language, PHP supports type declarations on function parameters, which are enforced at runtime. This has been supported for classes and interfaces since PHP 5.0, for arrays since PHP 5.1, for "callables" since PHP 5.4, and scalar (integer, float, string and boolean) types since PHP 7.0.[71] PHP 7.0 also has type declarations for function return types, expressed by placing the type name after the list of parameters, preceded by a colon.[70] For example, the getAdder function from the earlier example could be annotated with types like so in PHP 7:

function getAdder(int $x): Closure { return fn(int $y): int => $x + $y; } $adder = getAdder(8); echo $adder(2); // prints "10" echo $adder(null); // throws an exception because an incorrect type was passed $adder = getAdder([]); // would also throw an exception 

By default, scalar type declarations follow weak typing principles. So, for example, if a parameter's type is int, PHP would allow not only integers, but also convertible numeric strings, floats or booleans to be passed to that function, and would convert them.[71] However, PHP 7 has a "strict typing" mode which, when used, disallows such conversions for function calls and returns within a file.[71]

PHP objects edit

Basic object-oriented programming functionality was added in PHP 3 and improved in PHP 4.[11] This allowed for PHP to gain further abstraction, making creative tasks easier for programmers using the language. Object handling was completely rewritten for PHP 5, expanding the feature set and enhancing performance.[229] In previous versions of PHP, objects were handled like value types.[229] The drawback of this method was that code had to make heavy use of PHP's "reference" variables if it wanted to modify an object it was passed rather than creating a copy of it. In the new approach, objects are referenced by handle, and not by value.[citation needed]

PHP 5 introduced private and protected member variables and methods, along with abstract classes, final classes, abstract methods, and final methods. It also introduced a standard way of declaring constructors and destructors, similar to that of other object-oriented languages such as C++, and a standard exception handling model. Furthermore, PHP 5 added interfaces and allowed for multiple interfaces to be implemented. There are special interfaces that allow objects to interact with the runtime system. Objects implementing ArrayAccess can be used with array syntax and objects implementing Iterator or IteratorAggregate can be used with the foreach language construct. There is no virtual table feature in the engine, so static variables are bound with a name instead of a reference at compile time.[230]

If the developer creates a copy of an object using the reserved word clone, the Zend engine will check whether a __clone() method has been defined. If not, it will call a default __clone() which will copy the object's properties. If a __clone() method is defined, then it will be responsible for setting the necessary properties in the created object. For convenience, the engine will supply a function that imports the properties of the source object, so the programmer can start with a by-value replica of the source object and only override properties that need to be changed.[231]

The visibility of PHP properties and methods is defined using the keywords public, private, and protected. The default is public, if only var is used; var is a synonym for public. Items declared public can be accessed everywhere. protected limits access to inherited classes (and to the class that defines the item). private limits visibility only to the class that defines the item.[232] Objects of the same type have access to each other's private and protected members even though they are not the same instance.[citation needed]

Example edit

The following is a basic example of object-oriented programming in PHP 8:

<?php  abstract class User {  protected string $name;   public function __construct(string $name)  {  // make first letter uppercase and the rest lowercase  $this->name = ucfirst(strtolower($name));  }   public function greet(): string  {  return "Hello, my name is " . $this->name;  }   abstract public function job(): string; }  class Student extends User {  public function __construct(string $name, private string $course)  {  parent::__construct($name);  }   public function job(): string  {  return "I learn " . $this->course;  } }  class Teacher extends User {  public function __construct(string $name, private array $teachingCourses)  {  parent::__construct($name);  }   public function job(): string  {  return "I teach " . implode(", ", $this->teachingCourses);  } }  $students = [  new Student("Alice", "Computer Science"),  new Student("Bob", "Computer Science"),  new Student("Charlie", "Business Studies"), ];  $teachers = [  new Teacher("Dan", ["Computer Science", "Information Security"]),  new Teacher("Erin", ["Computer Science", "3D Graphics Programming"]),  new Teacher("Frankie", ["Online Marketing", "Business Studies", "E-commerce"]), ];  foreach ([$students, $teachers] as $users) {  echo $users[0]::class . "s:\n";   array_walk($users, function (User $user) {  echo "{$user->greet()}, {$user->job()}\n";  }); } 

This program outputs the following:

Students: Hello, my name is Alice, I learn Computer Science Hello, my name is Bob, I learn Computer Science Hello, my name is Charlie, I learn Business Studies Teachers: Hello, my name is Dan, I teach Computer Science, Information Security Hello, my name is Erin, I teach Computer Science, 3D Graphics Programming Hello, my name is Frankie, I teach Online Marketing, Business Studies, E-commerce 

Implementations edit

The only complete PHP implementation is the original, known simply as PHP. It is the most widely used and is powered by the Zend Engine. To disambiguate it from other implementations, it is sometimes unofficially called "Zend PHP". The Zend Engine compiles PHP source code on-the-fly into an internal format that it can execute, thus it works as an interpreter.[233][234] It is also the "reference implementation" of PHP, as PHP has no formal specification, and so the semantics of Zend PHP define the semantics of PHP. Due to the complex and nuanced semantics of PHP, defined by how Zend works, it is difficult for competing implementations to offer complete compatibility.[citation needed]

PHP's single-request-per-script-execution model, and the fact that the Zend Engine is an interpreter, leads to inefficiency; as a result, various products have been developed to help improve PHP performance. In order to speed up execution time and not have to compile the PHP source code every time the web page is accessed, PHP scripts can also be deployed in the PHP engine's internal format by using an opcode cache, which works by caching the compiled form of a PHP script (opcodes) in shared memory to avoid the overhead of parsing and compiling the code every time the script runs. An opcode cache, Zend Opcache, is built into PHP since version 5.5.[235] Another example of a widely used opcode cache is the Alternative PHP Cache (APC), which is available as a PECL extension.[236]

While Zend PHP is still the most popular implementation, several other implementations have been developed. Some of these are compilers or support JIT compilation, and hence offer performance benefits over Zend PHP at the expense of lacking full PHP compatibility.[citation needed] Alternative implementations include the following:

  • HHVM (HipHop Virtual Machine) – developed at Facebook and available as open source, it converts PHP code into a high-level bytecode (commonly known as an intermediate language), which is then translated into x86-64 machine code dynamically at runtime by a just-in-time (JIT) compiler, resulting in up to 6× performance improvements.[237] However, since version 7.2 Zend has outperformed HHVM,[238] and HHVM 3.24 is the last version to officially support PHP.[239]
    • HipHop – developed at Facebook and available as open source, it transforms the PHP scripts into C++ code and then compiles the resulting code, reducing the server load up to 50%. In early 2013, Facebook deprecated it in favour of HHVM due to multiple reasons, including deployment difficulties and lack of support for the whole PHP language, including the create_function() and eval() constructs.[240]
  • Parrot – a virtual machine designed to run dynamic languages efficiently; the cross-translator Pipp transforms the PHP source code into the Parrot intermediate representation, which is then translated into the Parrot's bytecode and executed by the virtual machine.
  • PeachPie – a second-generation compiler to .NET Common Intermediate Language (CIL) bytecode, built on the Roslyn platform; successor of Phalanger, sharing several architectural components
  • Phalanger – compiles PHP into .Net Common Intermediate Language bytecode; predecessor of PeachPie
  • Quercus – compiles PHP into Java bytecode

Licensing edit

PHP is free software released under the PHP License, which stipulates that:[241]

Products derived from this software may not be called "PHP", nor may "PHP" appear in their name, without prior written permission from group@php.net. You may indicate that your software works in conjunction with PHP by saying "Foo for PHP" instead of calling it "PHP Foo" or "phpfoo".

This restriction on the use of "PHP" makes the PHP License incompatible with the General Public License (GPL), while the Zend License is incompatible due to an advertising clause similar to that of the original BSD license.[242]

Development and community edit

PHP includes various free and open-source libraries in its source distribution or uses them in resulting PHP binary builds. PHP is fundamentally an Internet-aware system with built-in modules for accessing File Transfer Protocol (FTP) servers and many database servers, including PostgreSQL, MySQL, Microsoft SQL Server and SQLite (which is an embedded database), LDAP servers, and others. Numerous functions are familiar to C programmers, such as those in the stdio family, are available in standard PHP builds.[243]

PHP allows developers to write extensions in C to add functionality to the PHP language. PHP extensions can be compiled statically into PHP or loaded dynamically at runtime. Numerous extensions have been written to add support for the Windows API, process management on Unix-like operating systems, multibyte strings (Unicode), cURL, and several popular compression formats. Other PHP features made available through extensions include integration with Internet Relay Chat (IRC), dynamic generation of images and Adobe Flash content, PHP Data Objects (PDO) as an abstraction layer used for accessing databases,[244][245][246][247][248][249][250] and even speech synthesis. Some of the language's core functions, such as those dealing with strings and arrays, are also implemented as extensions.[251] The PHP Extension Community Library (PECL) project is a repository for extensions to the PHP language.[252]

Some other projects, such as Zephir, provide the ability for PHP extensions to be created in a high-level language and compiled into native PHP extensions. Such an approach, instead of writing PHP extensions directly in C, simplifies the development of extensions and reduces the time required for programming and testing.[253]

By December 2018 the PHP Group consisted of ten people: Thies C. Arntzen, Stig Bakken, Shane Caraveo, Andi Gutmans, Rasmus Lerdorf, Sam Ruby, Sascha Schumann, Zeev Suraski, Jim Winstead, and Andrei Zmievski.[254]

Zend Technologies provides a PHP Certification based on PHP 7[255] exam (and previously based on PHP 5.5) for programmers to become certified PHP developers.

The PHP Foundation edit

PHP
 
FormationNovember 22, 2021; 2 years ago (2021-11-22)
FounderAutomattic, Laravel, Acquia, Zend, Private Packagist, Symfony, Craft CMS, Tideways, PrestaShop, JetBrains[256]
Websitehttps://thephp.foundation

On 26 November 2021, the JetBrains blog announced the creation of The PHP Foundation, which will sponsor the design and development of PHP.[257]

Year Commits Reviews RFCs
2022[258] 683 283 8
2023[259] 784 702 17

The foundation hires "Core Developers" to work on the PHP language's core repository. Roman Pronskiy, a member of the foundation's board, said that they aim to pay "market salaries" to developers.[260]

The response to the foundation has mostly been positive, with the foundation being praised for better supporting the language and helping to stop the decrease in the language's popularity.[261][262] However, it has also been criticised for adding breaking changes to minor versions of PHP, such as in PHP 8.2 where initialising members of a class out-with the original class scope would cause depreciation errors,[263] these changes impacted a number of open source projects including WordPress. [264]

Installation and configuration edit

 
Example output of the phpinfo() function in PHP 7.1

There are two primary ways for adding support for PHP to a web server – as a native web server module, or as a CGI executable. PHP has a direct module interface called server application programming interface (SAPI), which is supported by many web servers including Apache HTTP Server, Microsoft IIS and iPlanet Web Server. Some other web servers, such as OmniHTTPd, support the Internet Server Application Programming Interface (ISAPI), which is Microsoft's web server module interface. If PHP has no module support for a web server, it can always be used as a Common Gateway Interface (CGI) or FastCGI processor; in that case, the web server is configured to use PHP's CGI executable to process all requests to PHP files.[265]

PHP-FPM (FastCGI Process Manager) is an alternative FastCGI implementation for PHP, bundled with the official PHP distribution since version 5.3.3.[266] When compared to the older FastCGI implementation, it contains some additional features, mostly useful for heavily loaded web servers.[267]

When using PHP for command-line scripting, a PHP command-line interface (CLI) executable is needed. PHP supports a CLI server application programming interface (SAPI) since PHP 4.3.0.[268] The main focus of this SAPI is developing shell applications using PHP. There are quite a few differences between the CLI SAPI and other SAPIs, although they do share many of the same behaviours.[269]

PHP has a direct module interface called SAPI for different web servers;[270] in case of PHP 5 and Apache 2.0 on Windows, it is provided in form of a DLL file called php5apache2.dll,[271] which is a module that, among other functions, provides an interface between PHP and the web server, implemented in a form that the server understands. This form is what is known as a SAPI.[citation needed]

There are different kinds of SAPIs for various web server extensions. For example, in addition to those listed above, other SAPIs for the PHP language include the Common Gateway Interface and command-line interface.[270][272]

PHP can also be used for writing desktop graphical user interface (GUI) applications, by using the PHP-GTK extension. PHP-GTK is not included in the official PHP distribution,[265] and as an extension, it can be used only with PHP versions 5.1.0 and newer. The most common way of installing PHP-GTK is by compiling it from the source code.[273]

When PHP is installed and used in cloud environments, software development kits (SDKs) are provided for using cloud-specific features.[citation needed] For example:

Numerous configuration options are supported, affecting both core PHP features and extensions.[276][277] Configuration file php.ini is searched for in different locations, depending on the way PHP is used.[278] The configuration file is split into various sections,[279] while some of the configuration options can be also set within the web server configuration.[280]

Use edit

 
A broad overview of the LAMP software bundle, displayed here together with Squid

PHP is a general-purpose scripting language that is especially suited to server-side web development, in which case PHP generally runs on a web server. Any PHP code in a requested file is executed by the PHP runtime, usually to create dynamic web page content or dynamic images used on websites or elsewhere.[281] It can also be used for command-line scripting and client-side graphical user interface (GUI) applications. PHP can be deployed on most web servers, many operating systems and platforms, and can be used with many relational database management systems (RDBMS). Most web hosting providers support PHP for use by their clients. It is available free of charge, and the PHP Group provides the complete source code for users to build, customize and extend for their own use.[17]

 
Dynamic web page: example of server-side scripting (PHP and MySQL)

Originally designed to create dynamic web pages, PHP now focuses mainly on server-side scripting,[282] and it is similar to other server-side scripting languages that provide dynamic content from a web server to a client, such as Python, Microsoft's ASP.NET, Sun Microsystems' JavaServer Pages,[283] and mod_perl. PHP has also attracted the development of many software frameworks that provide building blocks and a design structure to promote rapid application development (RAD).[citation needed] Some of these include PRADO, CakePHP, Symfony, CodeIgniter, Laravel, Yii Framework, Phalcon and Laminas, offering features similar to other web frameworks.

The LAMP architecture has become popular in the web industry as a way of deploying web applications.[284] PHP is commonly used as the P in this bundle alongside Linux, Apache and MySQL, although the P may also refer to Python, Perl, or some mix of the three. Similar packages, WAMP and MAMP, are also available for Windows and macOS, with the first letter standing for the respective operating system. Although both PHP and Apache are provided as part of the macOS base install, users of these packages seek a simpler installation mechanism that can be more easily kept up to date.[citation needed]

For specific and more advanced usage scenarios, PHP offers a well-defined and documented way for writing custom extensions in C or C++.[285][286][287][288][289][290][291][non-primary source needed] Besides extending the language itself in form of additional libraries, extensions are providing a way for improving execution speed where it is critical and there is room for improvements by using a true compiled language.[292][293] PHP also offers well-defined ways for embedding itself into other software projects. That way PHP can be easily used as an internal scripting language for another project, also providing tight interfacing with the project's specific internal data structures.[294]

PHP received mixed reviews due to lacking support for multithreading at the core language level,[295] though using threads is made possible by the "pthreads" PECL extension.[296][297]

A command line interface, php-cli, and two ActiveX Windows Script Host scripting engines for PHP have been produced.[citation needed]

Popularity and usage statistics edit

Usage share of PHP versions on 23 March 2024:
four months after PHP 8.3's release[18][298][299][300][301]

  PHP 8.3: 2.10% of PHP 8 (0.56%)
  PHP 8.2: 18.3% of PHP 8 (4.85%)
  PHP 8.1: 40.7% of PHP 8 (10.79%)
  PHP 8.0: 38.9% of PHP 8 (10.31%)
  PHP 7.4: 69.0% of PHP 7 (39.47%)
  PHP 7.3: 13.2% of PHP 7 (7.55%)
  PHP 7.2: 9.60% of PHP 7 (5.49%)
  PHP 7.1: 3.90% of PHP 7 (2.23%)
  PHP 7.0: 4.30% of PHP 7 (2.46%)
  PHP 5.6: 54.0% of PHP 5 (8.7480%)
  PHP 5.5: 8.40% of PHP 5 (1.3608%)
  PHP 5.4: 15.4% of PHP 5 (2.4948%)
  PHP 5.3: 14.9% of PHP 5 (2.4138%)
  PHP 5.2: 6.80% of PHP 5 (1.1016%)
  PHP 5.1: 0.40% of PHP 5 (0.0648%)
  PHP 5.0: 0.10% of PHP 5 (0.0162%)
  PHP 4.4: 78.7% of PHP 4 (0.1574%)
  PHP 4.3: 18.5% of PHP 4 (0.0370%)
  PHP 4.2: 1.60% of PHP 4 (0.0032%)
  PHP 4.1: 0.80% of PHP 4 (0.0016%)
  PHP 4.0: 0.30% of PHP 4 (0.0006%)

PHP is used for Web content management systems including MediaWiki,[302] WordPress,[303] Joomla,[304] Drupal,[305] Moodle,[306] eZ Publish, eZ Platform, and SilverStripe.[307]

As of January 2013, PHP was used in more than 240 million websites (39% of those sampled) and was installed on 2.1 million web servers.[308]

As of 23 March 2024 (four months after PHP 8.3's release), PHP is used as the server-side programming language on 76.4% of websites where the language could be determined; PHP 7 is the most used version of the language with 57.2% of websites using PHP being on that version, while 26.6% use PHP 8, 16.2% use PHP 5 and 0.2% use PHP 4.[18]

Security edit

In 2019, 11% of all vulnerabilities listed by the National Vulnerability Database were linked to PHP;[309] historically, about 30% of all vulnerabilities listed since 1996 in this database are linked to PHP. Technical security flaws of the language itself or of its core libraries are not frequent (22 in 2009, about 1% of the total although PHP applies to about 20% of programs listed).[310] Recognizing that programmers make mistakes, some languages include taint checking to automatically detect the lack of input validation which induces many issues. Such a feature is being developed for PHP,[311] but its inclusion into a release has been rejected several times in the past.[312][313]

There are advanced protection patches such as Suhosin and Hardening-Patch, specially designed for web hosting environments.[314]

Historically, old versions of PHP had some configuration parameters and default values for such runtime settings that made some PHP applications prone to security issues. Among these, magic_quotes_gpc and register_globals[315] configuration directives were the best known; the latter made any URL parameters become PHP variables, opening a path for serious security vulnerabilities by allowing an attacker to set the value of any uninitialized global variable and interfere with the execution of a PHP script. Support for "magic quotes" and "register globals" settings has been deprecated since PHP 5.3.0, and removed from PHP 5.4.0.[316]

Another example for the potential runtime-settings vulnerability comes from failing to disable PHP execution (for example by using the engine configuration directive)[317] for the directory where uploaded files are stored; enabling it can result in the execution of malicious code embedded within the uploaded files.[318][319][320] The best practice is to either locate the image directory outside of the document root available to the web server and serve it via an intermediary script or disable PHP execution for the directory which stores the uploaded files.[citation needed]

Also, enabling the dynamic loading of PHP extensions (via enable_dl configuration directive)[321] in a shared web hosting environment can lead to security issues.[322][323]

Implied type conversions that result in different values being treated as equal, sometimes against the programmer's intent, can lead to security issues. For example, the result of the comparison '0e1234' == '0' is true, because strings that are parsable as numbers are converted to numbers; in this case, the first compared value is treated as scientific notation having the value (0×101234), which is zero. Errors like this resulted in authentication vulnerabilities in Simple Machines Forum,[324] Typo3[325] and phpBB[326] when MD5 password hashes were compared. The recommended way is to use hash_equals() (for timing attack safety), strcmp or the identity operator (===), as '0e1234' === '0' results in false.[327]

In a 2013 analysis of over 170,000 website defacements, published by Zone-H, the most frequently (53%) used technique was the exploitation of file inclusion vulnerability, mostly related to insecure usage of the PHP language constructs include, require, and allow_url_fopen.[328][329]

As of 23 March 2024, (4 months after PHP 8.3 release) W3Techs reports that 83.9% of websites using PHP, use versions 8.0 or older (which are no longer supported by The PHP Development Team).[330] PHP Version 5 is still used by 16.2% of all websites.[299] It is highly recommended to migrate to PHP 8.1 or later and use random_int()[331] instead of rand()[332] or mt_rand(),[333] as the latter functions are not cryptographically secure. There are two attacks that can be performed over PHP entropy sources: "seed attack" and "state recovery attack".[citation needed] With current[when?] GPU technologies, an attacker can perform up to 230 MD5 calculations per second with a $250 GPU, while with an additional $500 can reach up to 232 calculations.[334] In combination with a "birthday attack" this can lead to serious security vulnerabilities.[citation needed]

See also edit

References edit

  1. ^ a b Lerdorf, Rasmus (June 8, 1995). "Announce: Personal Home Page Tools (PHP Tools)". Retrieved 7 June 2011.
  2. ^ a b Lerdorf, Rasmus (2007-04-26). . The Conversations Network. Archived from the original on 2019-01-06. Retrieved 2009-12-11.
  3. ^ "PHP: News Archive - 2024". www.php.net.
  4. ^ "PHP: Function arguments – Manual". secure.php.net.
  5. ^ "PHP: Release Archives (museum)". museum.php.net.
  6. ^ "PHP: Preface – Manual".
  7. ^ Stogov, Dmitry [@dstogov] (December 4, 2015). "It's not a secret that some #PHP7 optimization ideas came from HHVM, LuaJIT and V8. Thank you @HipHopVM @SaraMG. #php7thankyou" (Tweet) – via Twitter.
  8. ^ "PHP: Hypertext Preprocessor". www.php.net. Retrieved 2020-02-12.
  9. ^ a b Krill, Paul (2013-11-18). "Believe the hype: PHP founder backs Facebook's HipHop technology". InfoWorld. Retrieved 2022-10-13.
  10. ^ "Announce: Personal Home Page Tools (PHP Tools)". groups.google.com. Retrieved 2022-11-03.
  11. ^ a b c d e f g h i "History of PHP and related projects". The PHP Group. Retrieved 2008-02-25.
  12. ^ a b "History of PHP". php.net.
  13. ^ Olsson, Mikael (2013-09-04). PHP Quick Scripting Reference. Apress. ISBN 978-1-4302-6284-8.
  14. ^ PHP Manual: Preface, www.php.net.
  15. ^ "Introduction: What can PHP do?". PHP Manual. Retrieved 2009-03-05.
  16. ^ helicopter: Port of node-ar-drone which allows user to control a Parrot AR Drone over PHP: jolicode/php-ar-drone, JoliCode, 2019-01-11, retrieved 2019-02-23
  17. ^ a b . O'Reilly. 2001-05-03. Archived from the original on 2008-02-19. Retrieved 2008-02-25.
  18. ^ a b c "Usage statistics of PHP for websites". W3Techs – World Wide Web Technology Surveys. W3Techs. Retrieved 23 March 2024.
  19. ^ "Usage Statistics and Market Share of PHP Version 8 for Websites, March 2024". w3techs.com. Retrieved 2024-03-23.
  20. ^ Lerdorf, Rasmus (2012-07-20). "I wonder why people keep writing that PHP was ever written in Perl. It never was. #php". Twitter. Retrieved 2014-09-04.
  21. ^ Lerdorf, Rasmus (2007-04-26). . The Conversations Network. Archived from the original (mp3) on 2019-01-06. Retrieved 2009-06-22.
  22. ^ Lerdorf, Rasmus (2007). "Slide 3". slides for 'PHP on Hormones' talk. The PHP Group. Retrieved 2009-06-22.
  23. ^ Lerdorf, Rasmus (1995-06-08). "Announce: Personal Home Page Tools (PHP Tools)". Newsgroup: comp.infosystems.www.authoring.cgi. Retrieved 2006-09-17.
  24. ^ . 2003-11-19. Archived from the original on 2013-07-28.
  25. ^ Alshetwi, A.B.; Rahmat, R. A. A. O.; Borhan, M. N.; Ismael, S.; Ali, A.; Irtema, H. I. M.; Alfakhria, A. Y. (2018). "Web-Based Expert System for Optimizing of Traffic Road in Developing Countries". Retrieved 13 Feb 2024.
  26. ^ "Problems with PHP". Retrieved 20 December 2010.
  27. ^ "php.internals: Re: Function name consistency". news.php.net. 2013-12-28. Retrieved 2014-02-09.
  28. ^ Rasmus Lerdorf (Dec 16, 2013). "Re: Flexible function naming". Newsgroup: php.internals. Retrieved December 26, 2013.
  29. ^ . PHP.net. Archived from the original on August 15, 2000.
  30. ^ . Zend Technologies Ltd. Archived from the original on 2006-07-19. Retrieved 2006-09-17.
  31. ^ "php.net 2007 news archive". The PHP Group. 2007-07-13. Retrieved 2008-02-22.
  32. ^ Kerner, Sean Michael (2008-02-01). . InternetNews. Archived from the original on 2018-08-06. Retrieved 2018-12-16.
  33. ^ Trachtenberg, Adam (2004-07-15). . O'Reilly. Archived from the original on 2016-03-31. Retrieved 2008-02-22.
  34. ^ "Late Static Binding in PHP". Digital Sandwich. 2006-02-23. Retrieved 2008-03-25.
  35. ^ "Static Keyword". The PHP Group. Retrieved 2008-03-25.
  36. ^ . Archived from the original on 2011-07-17.
  37. ^ (PDF). GoPHP5 Press Release. Archived from the original (PDF) on 2019-08-04. Retrieved 2008-02-23.
  38. ^ . GoPHP5. Archived from the original on 2011-04-27. Retrieved 2008-02-22.
  39. ^ "PHP Installation and Configuration". php.net. Retrieved 2013-10-29.
  40. ^ "PHP for Windows: Binaries and sources releases (5.3)". php.net. Retrieved 2013-10-29.
  41. ^ "PHP for Windows: Binaries and sources releases (5.4)". php.net. Retrieved 2013-10-29.
  42. ^ "PHP for Windows: Binaries and sources releases (5.5)". php.net. Retrieved 2013-10-29.
  43. ^ "PHP: Supported Versions".
  44. ^ "Types: Strings (PHP Manual)". PHP.net. Retrieved 2013-09-22.
  45. ^ "Details of the String Type (PHP Manual)". PHP.net. Retrieved 2021-09-22.
  46. ^ Andrei Zmievski (2005-08-10). "PHP Unicode support design document" (Mailing list). Retrieved 2014-02-09.
  47. ^ "PHP 5.5 or 6.0". Retrieved 2014-02-09.
  48. ^ Andrei Zmievski (2011-04-22). "The Good, the Bad, and the Ugly: What Happened to Unicode and PHP 6". Retrieved 2014-02-09.
  49. ^ Rasmus Lerdorf (2010-03-11). "PHP 6" (Mailing list). Retrieved 2014-02-07.
  50. ^ . Archived from the original on 2015-11-19. Retrieved 2015-11-19.
  51. ^ "RFC: Name of Next Release of PHP". php.net. 2014-07-07. Retrieved 2014-07-15.
  52. ^ "Re: [PHP-DEV] [VOTE] [RFC] Name of Next Release of PHP (again)". 2014-07-30. Retrieved 2014-07-30.
  53. ^ "phpng: Refactored PHP Engine with Big Performance Improvement". news.php.net.
  54. ^ "PHP: rfc:phpng". php.net. Retrieved 16 December 2014.
  55. ^ a b "PHP: phpng". php.net. Retrieved 2014-07-15.
  56. ^ "Merge branch 'ZendEngine3'". github.com. 2014-12-05. Retrieved 2014-12-05.
  57. ^ a b c "PHP: Release Process". 2011-06-20. Retrieved 2013-10-06.
  58. ^ a b "PHP RFC: Exceptions in the engine (for PHP 7)". php.net. Retrieved 2015-05-21.
  59. ^ a b "PHP RFC: Uniform Variable Syntax". php.net. 2014-05-31. Retrieved 2014-07-30.
  60. ^ "Online PHP editor | output for udRhX". 3v4l.org.
  61. ^ "PHP RFC: Fix "foreach" behavior". php.net. Retrieved 2015-05-21.
  62. ^ "PHP RFC: Constructor behaviour of internal classes". php.net. Retrieved 2015-05-21.
  63. ^ "PHP RFC: Removal of dead or not yet PHP7 ported SAPIs and extensions". php.net. Retrieved 2015-05-21.
  64. ^ "PHP RFC: Fix list() behavior inconsistency". php.net. Retrieved 2015-05-21.
  65. ^ "PHP RFC: Remove alternative PHP tags". php.net. Retrieved 2015-05-21.
  66. ^ "PHP RFC: Make defining multiple default cases in a switch a syntax error". php.net. Retrieved 2015-05-21.
  67. ^ "PHP RFC: Remove hex support in numeric strings". php.net. Retrieved 2015-05-21.
  68. ^ a b "PHP RFC: Integer Semantics". php.net. Retrieved 2015-05-21. Making NaN and Infinity always become zero when cast to integer means more cross-platform consistency, and is also less surprising than what is currently produces
  69. ^ "PHP RFC: ZPP Failure on Overflow". php.net. Retrieved 2015-05-21.
  70. ^ a b c "RFC: Return Types". php.net. 2015-01-27. Retrieved 2015-01-28.
  71. ^ a b c d e f "RFC: Scalar Type Declarations". php.net. 2015-03-16. Retrieved 2015-03-17.
  72. ^ a b c d e f g Brent. "What's new in PHP 8". Stitcher. Retrieved 22 September 2020.
  73. ^ "PHP 8 Released". PHP. Retrieved 27 November 2020.
  74. ^ a b "PHP: rfc:jit". wiki.php.net. Retrieved 2019-04-05.
  75. ^ Brent. "PHP 8: JIT performance in real-life web applications". Stitcher.io. Retrieved 4 October 2020.
  76. ^ Rethams, Derick. "PHP 8: A Quick Look at JIT".
  77. ^ a b Popov, Nikita. ""What's new in PHP 8.0?" Nikita Popov". PHP fwdays. Archived from the original on 2021-12-11. Retrieved 4 October 2020.
  78. ^ Daniele, Carlo (25 May 2020). "What's New in PHP 8 (Features, Improvements, and the JIT Compiler)". Kinsta. Retrieved 24 December 2020.
  79. ^ Redmond, Paul (15 July 2020). "Match Expression is Coming to PHP 8". Laravel News. Retrieved 4 October 2020.
  80. ^ "PHP 8.0: Match Expressions". PHP Watch. Retrieved 4 October 2020.
  81. ^ Barnes, Eric (27 November 2020). "PHP 8 is now Released!". Laravel News. Retrieved 24 December 2020.
  82. ^ a b "PHP RFC: throw expression". wiki.php.net. Retrieved 14 August 2020.
  83. ^ a b "PHP RFC: Nullsafe operator". wiki.php.net. Retrieved 14 August 2020.
  84. ^ a b "PHP: rfc:weakrefs". wiki.php.net. Retrieved 2019-04-05.
  85. ^ Merchant, Amit (13 June 2020). "These new string functions are coming in PHP 8". Amit Merchant. Retrieved 4 October 2020.
  86. ^ Popov, Nikita. "Call for participation: Annotating internal function argument and return types". Externals. Retrieved 19 November 2020.
  87. ^ "PHP 8 ChangeLog". PHP.net. Retrieved 2024-01-05.
  88. ^ "PHP: PHP 8.1.0 Release Announcement". PHP.net. Retrieved 2024-01-05.
  89. ^ "PHP 8 ChangeLog". PHP.net. Retrieved 2024-01-05.
  90. ^ "PHP: PHP 8.2.0 Release Announcement". PHP.net. Retrieved 2024-01-05.
  91. ^ a b c d e f g h i j k l "Unsupported Branches". php.net. Retrieved 2019-07-31.
  92. ^ "PHP 4.0.0 Released". Retrieved 25 October 2020.
  93. ^ a b c d "PHP: PHP 4 ChangeLog". The PHP Group. 2008-01-03. Retrieved 2008-02-22.
  94. ^ "PHP 4.1.0 Release Announcement". Retrieved 25 October 2020.
  95. ^ "PHP 4.2.0 Release Announcement". Retrieved 25 October 2020.
  96. ^ "PHP 4.3.0 Release Announcement". Retrieved 25 October 2020.
  97. ^ "Using PHP from the command line". PHP Manual. The PHP Group. Retrieved 2009-09-11.
  98. ^ "PHP 4.4.0 Release Announcement". Retrieved 25 October 2020.
  99. ^ "PHP 4.4.0 Release Announcement". PHP Mannual. The PHP Group. Retrieved 2013-11-24.
  100. ^ "PHP 5.0.0 Released!". Retrieved 25 October 2020.
  101. ^ a b c "PHP: PHP 5 ChangeLog". The PHP Group. 2007-11-08. Retrieved 2008-02-22.
  102. ^ "PHP 5.1.0 Release Announcement". Retrieved 25 October 2020.
  103. ^ "PHP manual: PDO". The PHP Group. 2011-11-15. Retrieved 2011-11-15.
  104. ^ "PHP 5.2.0 Release Announcement". Retrieved 25 October 2020.
  105. ^ "PHP 5.3.0 Release Announcement". Retrieved 25 October 2020.
  106. ^ "PHP 5.4.0 Release Announcement". Retrieved 25 October 2020.
  107. ^ "Built-in web server". Retrieved March 26, 2012.
  108. ^ "PHP 5.5.0 Release Announcement". Retrieved 25 October 2020.
  109. ^ a b c d "Supported Versions". php.net. Retrieved 2017-12-13.
  110. ^ "PHP 5.5.0 changes". php.net. Retrieved 2015-03-03.
  111. ^ "PHP 5.6.0 Release Announcement". Retrieved 25 October 2020.
  112. ^ "Migrating from PHP 5.5.x to PHP 5.6.x". php.net. Retrieved 2014-03-24.
  113. ^ "Resetting PHP 6". There have been books on the shelves purporting to cover PHP 6 since at least 2008. But, in March 2010, the PHP 6 release is not out – in fact, it is not even close to out. Recent events suggest that PHP 6 will not be released before 2011 – if, indeed, it is released at all.
  114. ^ "PHP 7 moves full speed ahead". 2014-10-31. Recent versions of PHP have been part of the 5.x release series, but there will be no PHP 6. "We're going to skip [version] 6, because years ago, we had plans for a 6, but those plans were very different from what we're doing now," Gutmans said. Going right to version 7 avoids confusion.
  115. ^ "News Archive – 2018: PHP 7.2.9 Released". php.net. 2018-08-16. Retrieved 2018-08-16.
  116. ^ "PHP: rfc:size_t_and_int64_next". php.net. Retrieved 16 December 2014.
  117. ^ "PHP: rfc:abstract_syntax_tree". php.net. Retrieved 16 December 2014.
  118. ^ "PHP: rfc:closure_apply". php.net. Retrieved 16 December 2014.
  119. ^ "PHP: rfc:integer_semantics". php.net. Retrieved 16 December 2014.
  120. ^ "PHP: rfc:isset_ternary". php.net. Retrieved 16 December 2014.
  121. ^ "RFC: Unicode Codepoint Escape Syntax". 2014-11-24. Retrieved 2014-12-19.
  122. ^ "Combined Comparison (Spaceship) Operator". php.net. Retrieved 2015-05-21.
  123. ^ "PHP RFC: Generator Delegation". php.net. Retrieved 2015-05-21.
  124. ^ "PHP RFC: Anonymous Classes". php.net. Retrieved 2015-05-21.
  125. ^ "PHP RFC: Easy User-land CSPRNG". php.net. Retrieved 2015-05-21.
  126. ^ "PHP RFC: Group Use Declarations". php.net. Retrieved 2015-05-21.
  127. ^ "PHP: rfc:iterable". php.net. 2016-06-10. Retrieved 2023-06-30.
  128. ^ "PHP: rfc:nullable_types". php.net. 2014-04-10. Retrieved 2023-06-30.
  129. ^ "PHP: rfc:void_return_type". php.net. 2015-11-09. Retrieved 2015-11-14.
  130. ^ "PHP: rfc:class_constant_visibility". php.net. 2015-10-27. Retrieved 2015-12-08.
  131. ^ "PHP: rfc:short_list_syntax". php.net. 2016-04-07. Retrieved 2023-06-30.
  132. ^ "PHP: rfc:multiple-catch". php.net. 2016-03-06. Retrieved 2023-06-30.
  133. ^ "PHP: rfc:object-typehint". wiki.php.net.
  134. ^ "PHP: rfc:libsodium". wiki.php.net.
  135. ^ "PHP: rfc:allow-abstract-function-override". wiki.php.net.
  136. ^ "PHP: rfc:parameter-no-type-variance". wiki.php.net.
  137. ^ "PHP: todo:php73". wiki.php.net.
  138. ^ "PHP: rfc:flexible_heredoc_nowdoc_syntaxes". wiki.php.net.
  139. ^ "PHP: rfc:list_reference_assignment". wiki.php.net.
  140. ^ "PHP: rfc:pcre2-migration". wiki.php.net.
  141. ^ "PHP: hrtime – Manual". php.net.
  142. ^ "PHP 7.4.0 Released!". php.net. Retrieved 2019-11-28.
  143. ^ "PHP: rfc:typed_properties_v2". wiki.php.net. Retrieved 2019-04-04.
  144. ^ "PHP: rfc:preload". wiki.php.net. Retrieved 2019-04-04.
  145. ^ "PHP: rfc:null_coalesce_equal_operator". wiki.php.net. Retrieved 2019-04-04.
  146. ^ "PHP: rfc:improve-openssl-random-pseudo-bytes". wiki.php.net. Retrieved 2019-04-04.
  147. ^ "PHP: rfc:ffi". wiki.php.net. Retrieved 2019-04-05.
  148. ^ "PHP: rfc:permanent_hash_ext". wiki.php.net. Retrieved 2019-04-05.
  149. ^ "PHP: rfc:password_registry". wiki.php.net. Retrieved 2019-04-05.
  150. ^ "PHP: rfc:mb_str_split". wiki.php.net. Retrieved 2019-04-05.
  151. ^ "PHP: rfc:reference_reflection". wiki.php.net. Retrieved 2019-04-05.
  152. ^ "PHP: rfc:deprecate-and-remove-ext-wddx". wiki.php.net. Retrieved 2019-04-05.
  153. ^ "PHP: rfc:custom_object_serialization". wiki.php.net. Retrieved 2019-04-05.
  154. ^ "PHP: Supported Versions". php.net. Retrieved 2023-11-26.
  155. ^ "PHP: rfc:negative_array_index". wiki.php.net. Retrieved 2019-04-05.
  156. ^ "PHP RFC: Validation for abstract trait methods". wiki.php.net. Retrieved 14 August 2020.
  157. ^ "PHP RFC: Saner string to number comparisons". wiki.php.net. Retrieved 14 August 2020.
  158. ^ "PHP RFC: Saner numeric strings". wiki.php.net. Retrieved 14 August 2020.
  159. ^ "PHP RFC: Stricter type checks for arithmetic/bitwise operators". wiki.php.net. Retrieved 14 August 2020.
  160. ^ "PHP RFC: Reclassifying engine warnings". wiki.php.net. Retrieved 14 August 2020.
  161. ^ "PHP: rfc:consistent_type_errors". wiki.php.net. Retrieved 2019-04-05.
  162. ^ "PHP: rfc:lsp_errors". wiki.php.net. Retrieved 2019-05-26.
  163. ^ "PHP RFC: Locale-independent float to string cast". wiki.php.net. Retrieved 14 August 2020.
  164. ^ "PHP RFC: Variable Syntax Tweaks". wiki.php.net. Retrieved 14 August 2020.
  165. ^ "PHP RFC: Attributes V2". wiki.php.net. Retrieved 14 August 2020.
  166. ^ "PHP RFC: Attribute Amendments". wiki.php.net. Retrieved 14 August 2020.
  167. ^ "PHP RFC: Shorter Attribute Syntax". wiki.php.net. Retrieved 2020-06-20.
  168. ^ "PHP RFC: Shorter Attribute Syntax Change". wiki.php.net. Retrieved 14 August 2020.
  169. ^ "PHP RFC: Named Arguments". wiki.php.net. Retrieved 14 August 2020.
  170. ^ "PHP RFC: Match expression v2". wiki.php.net. Retrieved 14 August 2020.
  171. ^ "PHP RFC: Constructor Property Promotion". wiki.php.net. Retrieved 14 August 2020.
  172. ^ "PHP RFC: Union Types 2.0". wiki.php.net. Retrieved 14 August 2020.
  173. ^ "PHP RFC: Mixed Type v2". wiki.php.net. Retrieved 14 August 2020.
  174. ^ "PHP RFC: Static return type". wiki.php.net. Retrieved 14 August 2020.
  175. ^ "PHP RFC: non-capturing catches". wiki.php.net. Retrieved 14 August 2020.
  176. ^ Andre, Tyson. "PHP RFC: Always available JSON extension". PHP. Retrieved 25 October 2020.
  177. ^ "PHP: todo:php81". wiki.php.net. Retrieved 2022-06-16.
  178. ^ "PHP RFC: Explicit octal integer literal notation". wiki.php.net. Retrieved 2020-11-25.
  179. ^ "PHP RFC: Enumerations". wiki.php.net. Retrieved 2021-03-25.
  180. ^ "PHP: rfc:readonly_properties_v2". wiki.php.net. Retrieved 2021-11-26.
  181. ^ "PHP: rfc:first_class_callable_syntax". wiki.php.net. Retrieved 2021-11-26.
  182. ^ "PHP: rfc:new_in_initializers". wiki.php.net. Retrieved 2021-11-26.
  183. ^ "PHP: rfc:pure-intersection-types". wiki.php.net. Retrieved 2021-11-26.
  184. ^ "PHP: rfc:noreturn_type". wiki.php.net. Retrieved 2021-11-26.
  185. ^ "PHP: rfc:final_class_const". wiki.php.net. Retrieved 2021-11-26.
  186. ^ "PHP: rfc:fibers". wiki.php.net. Retrieved 2021-11-26.
  187. ^ "PHP: todo:php82". wiki.php.net. Retrieved 2022-06-16.
  188. ^ "PHP: rfc:readonly_classes". wiki.php.net. Retrieved 2022-06-16.
  189. ^ "PHP: rfc:null-false-standalone-types". wiki.php.net. Retrieved 2022-06-16.
  190. ^ "PHP: rfc:true-type". wiki.php.net. Retrieved 2022-06-16.
  191. ^ "PHP: rfc:strtolower-ascii". wiki.php.net. Retrieved 2022-06-16.
  192. ^ "PHP: rfc:dnf_types". wiki.php.net. Retrieved 2023-02-07.
  193. ^ "PHP: rfc:constants_in_traits". wiki.php.net. Retrieved 2023-02-07.
  194. ^ "PHP 8.3.0 Released!". php.net. 23 November 2023. Retrieved 24 November 2023.
  195. ^ "PHP: rfc:typed_class_constants". wiki.php.net. Retrieved 2023-12-17.
  196. ^ "PHP: rfc:dynamic_class_constant_fetch". wiki.php.net. Retrieved 2023-12-17.
  197. ^ "PHP: rfc:marking_overriden_methods". wiki.php.net. Retrieved 2023-12-17.
  198. ^ "PHP: rfc:readonly_amendments". wiki.php.net. Retrieved 2023-12-17.
  199. ^ "PHP: rfc:json_validate". wiki.php.net. Retrieved 2023-12-17.
  200. ^ "PHP: rfc:randomizer_additions". wiki.php.net. Retrieved 2023-12-17.
  201. ^ "PHP: todo: php84". php.net. 26 March 2024. Retrieved 26 March 2024.
  202. ^ "PHP: ElePHPant". 4 Oct 2014. Retrieved 4 Oct 2014.
  203. ^ "Redirecting…". wwphp-fb.github.io.
  204. ^ "The PHP Mascot's Birth - Creator Of The elePHPant Vincent Pontier Reveals The True Story!". 7php.com. 2014-01-06.
  205. ^ "ElePHPant". PHP.earth. Retrieved 2024-02-13.
  206. ^ "PHP: ElePHPant". www.php.net.
  207. ^ "A Field Guide to Elephpants". afieldguidetoelephpants.net.
  208. ^ "tags – Manual". php.net. Retrieved 2014-02-17.
  209. ^ a b "PHP: rfc:shortags". php.net. 2008-04-03. Retrieved 2014-05-08.
  210. ^ "PHP: Basic syntax". The PHP Group. Retrieved 2008-02-22.
  211. ^ "Basic Coding Standard". PHP Framework Interoperability Group. Retrieved 2016-01-03.
  212. ^ "echo – Manual". php.net. Retrieved 2014-02-17.
  213. ^ "Description of core php.ini directives – Manual". php.net. 2002-03-17. Retrieved 2014-02-17.
  214. ^ "Your first PHP-enabled page". The PHP Group. Retrieved 2008-02-25.
  215. ^ Bray, Tim; et al. (26 November 2008). "Processing Instructions". Extensible Markup Language (XML) 1.0 (Fifth Edition). W3C. Retrieved 2009-06-18.
  216. ^ "Variables". The PHP Group. Retrieved 2008-03-16.
  217. ^ "Instruction separation". The PHP Group. Retrieved 2008-03-16.
  218. ^ "Comments". The PHP Group. Retrieved 2008-03-16.
  219. ^ "Integers in PHP, running with scissors, and portability". MySQL Performance Blog. March 27, 2007. Retrieved 2007-03-28.
  220. ^ a b c d e "Types". The PHP Group. Retrieved 2008-03-16.
  221. ^ "Strings". The PHP Group. Retrieved 2008-03-21.
  222. ^ "SPL – StandardPHPLibrary". PHP.net. March 16, 2009. Retrieved 2009-03-16.
  223. ^ a b "User-defined functions (PHP manual)". php.net. 2014-07-04. Retrieved 2014-07-07.
  224. ^ a b "Variable functions (PHP manual)". php.net. 2014-07-04. Retrieved 2014-07-07.
  225. ^ "create_function() (PHP manual)". php.net. 2022-04-06. Retrieved 2022-05-04.
  226. ^ "Anonymous functions (PHP manual)". php.net. 2014-07-04. Retrieved 2014-07-07.
  227. ^ "Arrow Functions (PHP manual)". php.net. Retrieved 2021-01-25.
  228. ^ Christian Seiler; Dmitry Stogov (2008-07-01). "Request for Comments: Lambda functions and closures". php.net. Retrieved 2014-07-07.
  229. ^ a b "PHP 5 Object References". mjtsai.com. Retrieved 2008-03-16.
  230. ^ "Classes and Objects (PHP 5)". The PHP Group. Retrieved 2008-03-16.
  231. ^ "Object cloning". The PHP Group. Retrieved 2008-03-16.
  232. ^ . theserverpages.com. 2005-05-19. Archived from the original on 2010-09-24. Retrieved 2010-08-26.
  233. ^ . Archived from the original on 2011-07-16. Retrieved 2009-11-04.
  234. ^ Gilmore, W. Jason (2006-01-23). Beginning PHP and MySQL 5: From Novice to Professional. Apress. p. 43. ISBN 1590595521.
  235. ^ "[VOTE] Integrating Zend Optimizer+ into the PHP distribution". news.php.net. Retrieved 2013-03-08.
  236. ^ . PHP.net. Archived from the original on 2013-11-15. Retrieved 2013-09-21.
  237. ^ "We are the 98.5% (and the 16%) « HipHop Virtual Machine". hhvm.com. December 2013. Retrieved 2014-02-23.
  238. ^ "The Definitive PHP 5.6, 7.0, 7.1, 7.2 & 7.3 Benchmarks (2019)". 2019-01-14. Retrieved 2019-04-19.
  239. ^ Krill, Paul (2017-09-20). "Forget PHP! Facebook's HHVM engine switches to Hack instead". InfoWorld. Retrieved 2019-02-06.
  240. ^ "Announcement on GitHub removing HPHPc support". GitHub. Retrieved 2013-05-24.
  241. ^ "The PHP License, version 3.01". Retrieved 2010-05-20.
  242. ^ "GPL-Incompatible, Free Software Licenses". Various Licenses and Comments about Them. Free Software Foundation. Retrieved 2011-01-03.
  243. ^ "PHP: Function and Method listing – Manual". The PHP Group. Retrieved 2015-01-14.
  244. ^ "Introduction – Manual". php.net. 2013-06-07. Retrieved 2013-06-13.
  245. ^ Darryl Patterson (5 August 2004). . ibm.com. Archived from the original on 16 December 2014. Retrieved 16 December 2014.
  246. ^ "IBM — United States". Retrieved 16 December 2014.
  247. ^ "Five common PHP database problems". ibm.com. 2006-08-01. Retrieved 2013-06-13.
  248. ^ "IBM Redbooks — Developing PHP Applications for IBM Data Servers". redbooks.ibm.com. Retrieved 16 December 2014.
  249. ^ "php[architect] Magazine - The Journal for PHP Programmers". www.phparch.com.
  250. ^ Krill, Paul (19 October 2005). . InfoWorld. Archived from the original on 13 July 2014.
  251. ^ . php.net. Archived from the original on 16 March 2012. Retrieved 16 December 2014.
  252. ^ . devnewz.com. 2002-09-09. Archived from the original on 2008-02-18. Retrieved 2008-02-25.
  253. ^ "Why Zephir?". zephir-lang.com. 2015-10-20. Retrieved 2015-12-14.
  254. ^ "PHP Credits". Retrieved 2018-12-16.
  255. ^ "Learn PHP Via PHP Training and PHP Certification". www.zend.com. Retrieved 2020-11-16.
  256. ^ Walker, James (2021-12-13). "What the New PHP Foundation Means for PHP's Future". How-To Geek. Retrieved 2023-11-26.
  257. ^ "The New Life of PHP – The PHP Foundation | The PhpStorm Blog". The JetBrains Blog. 22 November 2021. Retrieved 2022-06-16.
  258. ^ "The PHP Foundation: Impact and Transparency Report 2022". thephp.foundation. Retrieved 2023-11-27.
  259. ^ Pronskiy, Roman (2024-02-26). "The PHP Foundation: Impact and Transparency Report 2023". The PHP Foundation. Retrieved 2024-04-01.
  260. ^ Anderson, Tim. "PHP Foundation formed to fund core developers". www.theregister.com. Retrieved 2023-12-05.
  261. ^ "Programming languages: This old favourite is gaining popularity again". ZDNET. Retrieved 2023-12-05.
  262. ^ "PHP 8.1 Released With Enums, Read-Only Properties and Fibers". www.i-programmer.info. Retrieved 2023-12-05.
  263. ^ "It's time for the PHP Foundation to #StopBreakingPHP". trongate.io. Retrieved 2023-11-27.
  264. ^ "WordPress 6.4 PHP Compatibility". Make WordPress Hosting. 2023-11-16. Retrieved 2023-11-27.
  265. ^ a b "General Installation Considerations". php.net. Retrieved 2013-09-22.
  266. ^ "News Archive: PHP 5.3.3 Released!". php.net. 2010-07-22.
  267. ^ "FastCGI Process Manager (FPM)". php.net. Retrieved 2013-09-22.
  268. ^ "Command line usage: Introduction". php.net. Retrieved 2013-09-22.
  269. ^ "Command line usage: Differences to other SAPIs". php.net. Retrieved 2013-09-22.
  270. ^ a b "General Installation Considerations". php.net. Retrieved 2013-09-22.
  271. ^ . php.net. Archived from the original on 2013-09-26. Retrieved 2013-09-22.
  272. ^ "Command line usage: Introduction". php.net. Retrieved 2013-09-22.
  273. ^ "Installing PHP-GTK 2". php.net. Retrieved 2013-09-22.
  274. ^ "AWS SDK for PHP". aws.amazon.com. Retrieved 2014-03-06.
  275. ^ . interoperabilitybridges.com. Archived from the original on 2014-03-20. Retrieved 2014-03-06.
  276. ^ "Runtime configuration: Table of contents". php.net. Retrieved 2013-09-22.
  277. ^ "php.ini directives: List of php.ini directives". php.net. Retrieved 2013-09-22.
  278. ^ "Runtime configuration: The configuration file". PHP.net. Retrieved 2013-09-22.
  279. ^ "php.ini directives: List of php.ini sections". PHP.net. Retrieved 2013-09-22.
  280. ^ "Runtime configuration: Where a configuration setting may be set". PHP.net. Retrieved 2013-09-22.
  281. ^ "PHP Manual Image Processing and GD;". php.net. Retrieved 2011-04-09.
  282. ^ . Indiana University. 2007-04-04. Archived from the original on 2016-01-21. Retrieved 2008-02-25.
  283. ^ "JavaServer Pages Technology — JavaServer Pages Comparing Methods for Server-Side Dynamic Content White Paper". Sun Microsystems. Retrieved 2008-02-25.
  284. ^ "Five simple ways to tune your LAMP application". IBM. 2011-01-25.
  285. ^ "PHP at the core: Extension structure". PHP.net. Retrieved 2013-09-22.
  286. ^ "PHP at the core: The "counter" Extension – A Continuing Example". PHP.net. Retrieved 2013-09-22.
  287. ^ . Zend Technologies. 2005-03-01. Archived from the original on 2013-09-24. Retrieved 2013-09-22.
  288. ^ . Zend Technologies. 2005-06-06. Archived from the original on 2013-09-26. Retrieved 2013-09-22.
  289. ^ . Zend Technologies. 2005-06-06. Archived from the original on 2013-09-26. Retrieved 2013-09-22.
  290. ^ . Zend Technologies. 2006-05-12. Archived from the original on 2013-09-26. Retrieved 2013-09-22.
  291. ^ . Zend Technologies. 2009-04-22. Archived from the original on 2013-09-20. Retrieved 2013-09-22.
  292. ^ "Extending PHP with C++?". Stack Overflow. Retrieved 2013-09-22.
  293. ^ "How can I use C++ code to interact with PHP?". Stack Overflow. Retrieved 2013-09-22.
  294. ^ Golemon, Sara (2006). Extending and Embedding PHP. Sams. ISBN 978-0-672-32704-9.
  295. ^ "Request #46919: Multithreading". PHP.net. Retrieved 2013-09-22.
  296. ^ "pthreads: Introduction (PHP Manual)". PHP.net. Retrieved 2013-09-22.
  297. ^ "PECL :: Package :: pthreads". pecl.php.net. Retrieved 2014-02-09.
  298. ^ "Usage Statistics and Market Share of PHP Version 4 for Websites, March 2024". w3techs.com.
  299. ^ a b "Usage Statistics and Market Share of PHP Version 5 for Websites, March 2024". w3techs.com.
  300. ^ "Usage Statistics and Market Share of PHP Version 7 for Websites, March 2024". w3techs.com.
  301. ^ "Usage Statistics and Market Share of PHP Version 8 for Websites, march 2024". w3techs.com.
  302. ^ "Manual:Installation requirements#PHP". MediaWiki. 2010-01-25. Retrieved 2010-02-26. PHP is the programming language in which MediaWiki is written [...]
  303. ^ "About WordPress". Retrieved 2010-02-26. WordPress was [...] built on PHP
  304. ^ Kempkens, Alex. "Joomla! — Content Management System to build websites & apps".
  305. ^ "PHP and Drupal". Drupal.org. 16 September 2007. Retrieved 2010-06-13.
  306. ^ "About". Moodle.org. Retrieved 2009-12-20.
  307. ^ . Archived from the original on 28 November 2014. Retrieved 13 October 2014. SilverStripe requires PHP 5.3.2+
  308. ^ Ide, Andy (2013-01-31). "PHP just grows & grows". Retrieved 2013-04-01.
  309. ^ "National Vulnerability Database (NVD) Search Vulnerabilities Statistics". Retrieved 2019-11-22.
  310. ^ "PHP: rfc:taint". wiki.php.net.
  311. ^ "Developer Meeting Notes, Nov. 2005".
  312. ^ . Archived from the original on 2009-02-26.
  313. ^ . 2008-08-15. Archived from the original on 2019-02-24. Retrieved 2019-08-22.
  314. ^ "Security: Using Register Globals". PHP Manual. PHP.net. Retrieved 2013-09-22.
  315. ^ "Magic Quotes". PHP Manual. PHP.net. Retrieved 2014-01-17.
  316. ^ "'engine' configuration directive". PHP: Runtime Configuration. PHP.net. Retrieved 2014-02-13.
  317. ^ . 2007-06-22. Archived from the original on 2013-09-27. Retrieved 2013-09-22.
  318. ^ "PHP security exploit with GIF images". PHP Classes blog. 2007-06-20. Retrieved 2013-09-22.
  319. ^ . 2007-06-04. Archived from the original on 2013-09-21. Retrieved 2013-09-22.
  320. ^ "'enable_dl' configuration directive". PHP: Runtime Configuration. PHP.net. Retrieved 2014-02-13.
  321. ^ "PHP function reference: dl()". PHP.net. Retrieved 2013-09-22.
  322. ^ "My host won't fix their Trojan". WebHosting Talk. Retrieved 2013-09-22.
  323. ^ Raz0r (25 January 2013). "Simple Machines Forum <= 2.0.3 Admin Password Reset".{{cite web}}: CS1 maint: numeric names: authors list (link)
  324. ^ Nibble Security. "TYPO3-SA-2010-020, TYPO3-SA-2010-022 EXPLAINED".
  325. ^ "Криптостойкость и небезопасное сравнение". Ahack.ru (in Russian).
  326. ^ "Comparison operators". PHP.net.
  327. ^ Krawczyk, Pawel (2013). . IPSec.pl. Archived from the original on 2015-04-15. Retrieved 2015-04-15.
  328. ^ Krawczyk, Pawel (2013). "So what are the "most critical" application flaws? On new OWASP Top 10". IPSec.pl. Retrieved 2015-04-15.
  329. ^ "Usage Statistics and Market Share of PHP for Websites, March 2024". w3techs.com. Retrieved 2024-03-23.
  330. ^ "PHP: Random_int - Manual".
  331. ^ "PHP: Rand - Manual".
  332. ^ "PHP: Mt_rand - Manual".
  333. ^ "I Forgot Your Password: Randomness Attacks Against PHP Applications". www.readkong.com.

Further reading edit

Listen to this article (35 minutes)
 
This audio file was created from a revision of this article dated 23 November 2011 (2011-11-23), and does not reflect subsequent edits.
  • Ford, Paul (June 11, 2015). "What is Code?". Bloomberg Businessweek. What's the Absolute Minimum I Must Know About PHP?

External links edit

  • Official website  
  • PHP at Curlie

this, article, about, scripting, language, other, uses, disambiguation, general, purpose, scripting, language, geared, towards, development, originally, created, danish, canadian, programmer, rasmus, lerdorf, 1993, released, 1995, reference, implementation, pr. This article is about the scripting language For other uses see PHP disambiguation PHP is a general purpose scripting language geared towards web development 8 It was originally created by Danish Canadian programmer Rasmus Lerdorf in 1993 and released in 1995 9 10 The PHP reference implementation is now produced by the PHP Group 11 PHP was originally an abbreviation of Personal Home Page 12 13 but it now stands for the recursive initialism PHP Hypertext Preprocessor 14 PHPParadigmMulti paradigm imperative functional object oriented procedural reflectiveDesigned byRasmus LerdorfDeveloperThe PHP Development Team Zend Technologies PHP FoundationFirst appeared8 June 1995 28 years ago 1995 06 08 1 2 Stable release8 3 6 11 April 2024 3 days ago 2024 04 11 3 Typing disciplineDynamic weak gradual 4 Implementation languageC primarily some components C OSUnix like Windows macOS IBM i OpenVMS IBM ZLicensedual licensed GNU General Public License version 2 or any later version and PHP License for PHP versions 3 0 or earlier 5 Only PHP License most of Zend engine under Zend Engine License for 3 01x and later versions Filename extensions php phar phtml pht phpsWebsitewww wbr php wbr netMajor implementationsZend Engine HHVM PeachPie Quercus ParrotInfluenced byPerl C C Java 6 Tcl 2 JavaScript 7 InfluencedHack JSP ASP React JSPHP Programming at WikibooksPHP code is usually processed on a web server by a PHP interpreter implemented as a module a daemon or a Common Gateway Interface CGI executable On a web server the result of the interpreted and executed PHP code which may be any type of data such as generated HTML or binary image data would form the whole or part of an HTTP response Various web template systems web content management systems and web frameworks exist that can be employed to orchestrate or facilitate the generation of that response Additionally PHP can be used for many programming tasks outside the web context such as standalone graphical applications 15 and drone control 16 PHP code can also be directly executed from the command line The standard PHP interpreter powered by the Zend Engine is free software released under the PHP License PHP has been widely ported and can be deployed on most web servers on a variety of operating systems and platforms 17 The PHP language has evolved without a written formal specification or standard with the original implementation acting as the de facto standard that other implementations aimed to follow W3Techs reports that as of 23 March 2024 update the four months after the PHP 8 3 release PHP is used by 76 4 of all websites whose programming language could be determined and 57 2 thereof use PHP 7 which is outdated and known to be insecure 18 Additionally PHP 8 0 is no longer supported 19 meaning the vast majority of PHP users utilize outdated versions and well over half of all websites PHP using or not whose programming language could be determined are insecure Contents 1 History 1 1 Early history 1 2 PHP 3 and 4 1 3 PHP 5 1 4 PHP 6 and Unicode 1 5 PHP 7 1 6 PHP 8 1 6 1 Just in time compilation 1 6 2 Addition of the match expression 1 6 3 Type changes and additions 1 6 4 Syntax changes and additions 1 6 5 Standard library changes and additions 1 6 6 Additional changes 1 7 PHP 8 1 1 8 PHP 8 2 1 9 Release history 2 Mascot 3 Syntax 3 1 Data types 3 2 Functions 3 3 PHP objects 3 3 1 Example 4 Implementations 5 Licensing 6 Development and community 7 The PHP Foundation 8 Installation and configuration 9 Use 9 1 Popularity and usage statistics 10 Security 11 See also 12 References 13 Further reading 14 External linksHistory edit nbsp nbsp nbsp Rasmus Lerdorf creator of PHP and Andi Gutmans and Zeev Suraski creators of the Zend Engine Early history edit PHP development began in 1993 9 when Rasmus Lerdorf wrote several Common Gateway Interface CGI programs in C 20 21 which he used to maintain his personal homepage He extended them to work with web forms and to communicate with databases and called this implementation Personal Home Page Forms Interpreter or PHP FI An example of the early PHP syntax 22 lt include text header html gt lt getenv HTTP USER AGENT gt lt if substr exec result Mozilla gt Hey you are using Netscape lt p gt lt endif gt lt sql database select from table where user username gt lt ifless numentries 1 gt Sorry that record does not exist lt p gt lt endif exit gt Welcome lt user gt lt p gt You have lt index 0 gt credits left in your account lt p gt lt include text footer html gt PHP FI could be used to build simple dynamic web applications To accelerate bug reporting and improve the code Lerdorf initially announced the release of PHP FI as Personal Home Page Tools PHP Tools version 1 0 on the Usenet discussion group comp infosystems www authoring cgi on 8 June 1995 1 23 This release included basic functionality such as Perl like variables form handling and the ability to embed HTML By this point the syntax had changed to resemble that of Perl but was simpler more limited and less consistent 12 11 Early PHP was never intended to be a new programming language rather it grew organically with Lerdorf noting in retrospect I don t know how to stop it there was never any intent to write a programming language I have absolutely no idea how to write a programming language I just kept adding the next logical step on the way 24 A development team began to form and after months of work and beta testing officially released PHP FI 2 in November 1997 25 citation needed The fact that PHP was not originally designed but instead was developed organically has led to inconsistent naming of functions and inconsistent ordering of their parameters 26 In some cases the function names were chosen to match the lower level libraries which PHP was wrapping 27 while in some very early versions of PHP the length of the function names was used internally as a hash function so names were chosen to improve the distribution of hash values 28 PHP 3 and 4 edit nbsp This is an example of PHP code for the WordPress content management system Zeev Suraski and Andi Gutmans rewrote the parser in 1997 and formed the base of PHP 3 changing the language s name to the recursive acronym PHP Hypertext Preprocessor 11 29 Afterwards public testing of PHP 3 began and the official launch came in June 1998 Suraski and Gutmans then started a new rewrite of PHP s core producing the Zend Engine in 1999 30 They also founded Zend Technologies in Ramat Gan Israel 11 On 22 May 2000 PHP 4 powered by the Zend Engine 1 0 was released 11 By August 2008 this branch had reached version 4 4 9 PHP 4 is now no longer under development and nor are any security updates planned to be released 31 32 PHP 5 edit On 1 July 2004 PHP 5 was released powered by the new Zend Engine II 11 PHP 5 included new features such as improved support for object oriented programming the PHP Data Objects PDO extension which defines a lightweight and consistent interface for accessing databases and numerous performance enhancements 33 In 2008 PHP 5 became the only stable version under development Late static binding had been missing from previous versions of PHP and was added in version 5 3 34 35 Many high profile open source projects ceased to support PHP 4 in new code from February 5 2008 because of the GoPHP5 initiative 36 provided by a consortium of PHP developers promoting the transition from PHP 4 to PHP 5 37 38 Over time PHP interpreters became available on most existing 32 bit and 64 bit operating systems either by building them from the PHP source code or by using pre built binaries 39 For PHP versions 5 3 and 5 4 the only available Microsoft Windows binary distributions were 32 bit IA 32 builds 40 41 requiring Windows 32 bit compatibility mode while using Internet Information Services IIS on a 64 bit Windows platform PHP version 5 5 made the 64 bit x86 64 builds available for Microsoft Windows 42 Official security support for PHP 5 6 ended on 31 December 2018 43 PHP 6 and Unicode edit PHP received mixed reviews due to lacking native Unicode support at the core language level 44 45 In 2005 a project headed by Andrei Zmievski was initiated to bring native Unicode support throughout PHP by embedding the International Components for Unicode ICU library and representing text strings as UTF 16 internally 46 Since this would cause major changes both to the internals of the language and to user code it was planned to release this as version 6 0 of the language along with other major features then in development 47 However a shortage of developers who understood the necessary changes and performance problems arising from conversion to and from UTF 16 which is rarely used in a web context led to delays in the project 48 As a result a PHP 5 3 release was created in 2009 with many non Unicode features back ported from PHP 6 notably namespaces In March 2010 the project in its current form was officially abandoned and a PHP 5 4 release was prepared to contain most remaining non Unicode features from PHP 6 such as traits and closure re binding 49 Initial hopes were that a new plan would be formed for Unicode integration but by 2014 none had been adopted citation needed PHP 7 edit During 2014 and 2015 a new major PHP version was developed PHP 7 The numbering of this version involved some debate among internal developers 50 While the PHP 6 Unicode experiments had never been released several articles and book titles referenced the PHP 6 names which might have caused confusion if a new release were to reuse the name 51 After a vote the name PHP 7 was chosen 52 The foundation of PHP 7 is a PHP branch that was originally dubbed PHP next generation phpng It was authored by Dmitry Stogov Xinchen Hui and Nikita Popov 53 and aimed to optimize PHP performance by refactoring the Zend Engine while retaining near complete language compatibility 54 By 14 July 2014 WordPress based benchmarks which served as the main benchmark suite for the phpng project showed an almost 100 increase in performance Changes from phpng make it easier to improve performance in future versions as more compact data structures and other changes are seen as better suited for a successful migration to a just in time JIT compiler 55 Because of the significant changes the reworked Zend Engine was called Zend Engine 3 succeeding Zend Engine 2 used in PHP 5 56 Because of the major internal changes in phpng it must receive a new major version number of PHP rather than a minor PHP 5 release according to PHP s release process 57 Major versions of PHP are allowed to break backward compatibility of code and therefore PHP 7 presented an opportunity for other improvements beyond phpng that require backward compatibility breaks citation needed In particular it involved the following changes Many fatal or recoverable level legacy PHP error mechanisms were replaced with modern object oriented exceptions 58 The syntax for variable dereferencing was reworked to be internally more consistent and complete allowing the use of the operators gt and with arbitrary meaningful left side expressions 59 Support for legacy PHP 4 style constructor methods was deprecated 60 The behavior of the foreach statement was changed to be more predictable 61 Constructors for the few classes built in to PHP which returned null upon failure were changed to throw an exception instead for consistency 62 Several unmaintained or deprecated server application programming interfaces SAPIs and extensions were removed from the PHP core most notably the legacy mysql extension 63 The behavior of the list operator was changed to remove support for strings 64 Support was removed for legacy ASP style delimiters lt and gt and lt script language php gt lt script gt 65 An oversight allowing a switch statement to have multiple default clauses was fixed 66 Support for hexadecimal number support in some implicit conversions from strings to number types was removed 67 The left shift and right shift operators were changed to behave more consistently across platforms 68 Conversions between floating point numbers and integers were changed e g infinity changed to convert to zero and implemented more consistently across platforms 68 69 PHP 7 also included new language features Most notably it introduced return type declarations for functions 70 which complement the existing parameter type declarations and support for the scalar types integer float string and boolean in parameter and return type declarations 71 PHP 8 edit PHP 8 was released on 26 November 2020 and is currently the second most used PHP major version PHP 8 is a major version and has breaking changes from previous versions 72 73 New features and notable changes include Just in time compilation edit Just in time compilation is supported in PHP 8 74 PHP 8 s JIT compiler can provide substantial performance improvements for some use cases 75 76 while PHP developer Nikita Popov stated that the performance improvements for most websites will be less substantial than the upgrade from PHP 5 to PHP 7 77 Substantial improvements are expected more for mathematical type operations than for common web development use cases 77 Additionally the JIT compiler provides the future potential to move some code from C to PHP due to the performance improvements for some use cases 78 Addition of the match expression edit Main article PHP syntax and semantics Match expression PHP 8 introduced the match expression 79 The match expression is conceptually similar to a switch statement and is more compact for some use cases 80 Because match is an expression its result can be assigned to a variable or returned from a function 81 Type changes and additions edit PHP 8 introduced union types a new static return type and a new mixed type 72 Attributes often referred to as annotations in other programming languages were added in PHP 8 which allow metadata to be added to classes 72 throw was changed from being a statement to being an expression 82 This allows exceptions to be thrown in places that were not previously possible 72 Syntax changes and additions edit PHP 8 includes changes to allow alternate more concise or more consistent syntaxes in a number of scenarios For example the nullsafe operator is similar to the null coalescing operator but used when calling methods 83 The following code snippet will not throw an error if getBirthday returns null human readable date user gt getBirthday gt diffForHumans Constructor property promotion has been added as syntactic sugar allowing class properties to be set automatically when parameters are passed into a class constructor 72 This reduces the amount of boilerplate code that must be written citation needed Other minor changes include support for use of class on objects which serves as an alternative for the use of get class 72 non capturing catches in try catch blocks variable syntax tweaks to resolve inconsistencies support for named arguments and support for trailing commas in parameter lists which adds consistency with support for trailing commas in other contexts such as in arrays citation needed Standard library changes and additions edit Weak maps were added in PHP 8 A WeakMap holds references to objects but these references do not prevent such objects from being garbage collected 84 This can provide performance improvements in scenarios where data is being cached this is of particular relevance for object relational mappings ORM 72 Various adjustments to interfaces such as adding support for creating DateTime objects from interfaces and the addition of a Stringable interface that can be used for type hinting citation needed Various new functions including str contains str starts with and str ends with 85 fdiv get debug type and get resource id citation needed Object implementation of token get all citation needed Additional changes edit Type annotations were also added into PHP s C source code itself to allow internal functions and methods to have complete type information in reflection 86 Inheritance with private methods citation needed Abstract methods in traits improvements citation needed PHP 8 1 edit PHP 8 1 was released on November 25 2021 87 It added support for enumerations also called enums declaring properties as readonly which prevents modification of the property after initialization and array unpacking with string keys The new never type can be used to indicate that a function does not return 88 PHP 8 2 edit PHP 8 2 was released on December 8 2022 89 New in this release are readonly classes whose instance properties are implicitly readonly disjunctive normal form DNF types and the random extension which provides a pseudorandom number generator with an object oriented API 90 Release history edit Version Release date Supported until 91 NotesOld version no longer maintained 1 0 8 June 1995 Officially called Personal Home Page Tools PHP Tools This is the first use of the name PHP 11 Old version no longer maintained 2 0 1 November 1997 Officially called PHP FI 2 0 This is the first release that could actually be characterised as PHP being a standalone language with many features that have endured to the present day Old version no longer maintained 3 0 6 June 1998 20 October 2000 91 Development moves from one person to multiple developers Zeev Suraski and Andi Gutmans rewritten the base for this version 11 Old version no longer maintained 4 0 22 May 2000 92 23 June 2001 91 Added more advanced two stage parse execute tag parsing system called the Zend engine 93 Old version no longer maintained 4 1 10 December 2001 94 12 March 2002 91 Introduced superglobals span class nv GET span span class nv POST span span class nv SESSION span etc 93 Old version no longer maintained 4 2 22 April 2002 95 6 September 2002 91 Disabled register globals by default Data received over the network is not inserted directly into the global namespace anymore closing possible security holes in applications 93 Old version no longer maintained 4 3 27 December 2002 96 31 March 2005 91 Introduced the command line interface CLI to supplement the CGI 93 97 Old version no longer maintained 4 4 11 July 2005 98 7 August 2008 91 Fixed a memory corruption bug which required breaking binary compatibility with extensions compiled against PHP version 4 3 x 99 Old version no longer maintained 5 0 13 July 2004 100 5 September 2005 91 Zend Engine II with a new object model 101 Old version no longer maintained 5 1 24 November 2005 102 24 August 2006 91 Performance improvements with the introduction of compiler variables in re engineered PHP Engine 101 Added PHP Data Objects PDO as a consistent interface for accessing databases 103 Old version no longer maintained 5 2 2 November 2006 104 6 January 2011 91 Enabled the filter extension by default Native JSON support 101 Old version no longer maintained 5 3 30 June 2009 105 14 August 2014 91 Namespace support late static bindings jump label limited goto anonymous functions closures PHP archives phar garbage collection for circular references improved Windows support sqlite3 mysqlnd as a replacement for libmysql as the underlying library for the extensions that work with MySQL fileinfo as a replacement for mime magic for better MIME support the Internationalization extension and deprecation of ereg extension Old version no longer maintained 5 4 1 March 2012 106 3 September 2015 91 Trait support short array syntax support Removed items register globals safe mode allow call time pass reference span class nx session register span span class p span span class nx session unregister span span class p span and span class nx session is registered span span class p span Built in web server 107 Several improvements to existing features performance and reduced memory requirements Old version no longer maintained 5 5 20 June 2013 108 10 July 2016 109 Support for generators finally blocks for exceptions handling OpCache based on Zend Optimizer bundled in official distribution 110 Old version no longer maintained 5 6 28 August 2014 111 31 December 2018 109 Constant scalar expressions variadic functions argument unpacking new exponentiation operator extensions of the use statement for functions and constants new phpdbg debugger as a SAPI module and other smaller improvements 112 6 x Not released Abandoned version of PHP that planned to include native Unicode support 113 114 Old version no longer maintained 7 0 3 December 2015 115 10 January 2019 57 Zend Engine 3 performance improvements 55 and 64 bit integer support on Windows 116 uniform variable syntax 59 AST based compilation process 117 added span class nx Closure span span class o span span class na call span span class p span 118 bitwise shift consistency across platforms 119 span class o span null coalesce operator 120 Unicode code point escape syntax 121 return type declarations 70 scalar type integer float string and boolean declarations 71 lt gt spaceship three way comparison operator 122 generator delegation 123 anonymous classes 124 simpler and more consistently available CSPRNG API 125 replacement of many remaining internal PHP errors with the more modern exceptions 58 and shorthand syntax for importing multiple items from a namespace 126 Old version no longer maintained 7 1 1 December 2016 1 December 2019 109 span class nx iterable span type 127 nullable types 128 span class nx void span return type 129 class constant visibility modifiers 130 short list syntax 131 multi catch 132 Old version no longer maintained 7 2 30 November 2017 30 November 2020 109 Object parameter and return type declaration 133 libsodium extension 134 abstract method overriding 135 parameter type widening 136 Old version no longer maintained 7 3 6 December 2018 137 6 December 2021 Flexible Heredoc and Nowdoc syntax 138 support for reference assignment and array deconstruction with span class k list span span class p span 139 PCRE2 support 140 span class nb hrtime span function 141 Old version no longer maintained 7 4 28 November 2019 142 28 November 2022 Typed properties 2 0 143 preloading 144 null coalescing assignment operator 145 improve span class nb openssl random pseudo bytes span 146 weak references 84 foreign function interface FFI 147 always available hash extension 148 password hash registry 149 multibyte string splitting 150 reflection for references 151 unbundle ext wddx 152 new custom object serialization mechanism 153 Old version no longer maintained 8 0 26 November 2020 154 26 November 2023 Just In Time JIT compilation 74 arrays starting with a negative index 155 stricter saner language semantics validation for abstract trait methods 156 saner string to number comparisons 157 saner numeric strings 158 span class nx TypeError span on invalid arithmetic bitwise operators 159 reclassification of various engine errors 160 consistent type errors for internal functions 161 fatal error for incompatible method signatures 162 locale independent float to string conversion 163 variable syntax tweaks 164 attributes 165 166 167 168 named arguments 169 match expression 170 constructor property promotion 171 union types 172 span class nx mixed span type 173 static return type 174 nullsafe operator 83 non capturing catches 175 span class k throw span expression 82 JSON extension is always available 176 Older version yet still maintained 8 1 25 November 2021 177 25 November 2024 Explicit octal integer literal notation 178 enumerations 179 read only properties 180 first class callable syntax 181 span class k new span in initializers 182 pure intersection types 183 span class nx never span return type 184 span class k final span class constraints 185 fibers 186 Older version yet still maintained 8 2 8 December 2022 187 8 December 2025 Readonly classes 188 span class k null span span class k false span and span class k true span as stand alone types 189 190 locale independent case conversion 191 disjunctive normal form types 192 constants in traits 193 Current stable version 8 3 23 November 2023 194 23 November 2026 Typed class constants 195 dynamic class constant fetch 196 span class p span span class nd Override span span class p span attribute 197 deep cloning of read only properties 198 new span class nx json validate span function 199 randomizer additions 200 the command line linter supports multiple filesFuture release 8 4 21 November 2024 201 21 November 2027Legend Old versionOlder version still maintainedLatest versionLatest preview versionFuture releaseBeginning on 28 June 2011 the PHP Development Team implemented a timeline for the release of new versions of PHP 57 Under this system at least one release should occur every month Once per year a minor release should occur which may include new features Every minor release should at least be supported for two years with security and bug fixes followed by at least one year of only security fixes for a total of a three year release process for every minor release No new features unless small and self contained are to be introduced into a minor release during the three year release process Mascot edit nbsp The elePHPant PHP mascotThe mascot of the PHP project is the elePHPant a blue elephant with the PHP logo on its side designed by Vincent Pontier 202 in 1998 203 The PHP letters were forming the shape of an elephant if viewed in a sideways angle 204 The elePHPant is sometimes differently coloured when in plush toy form 205 Many variations of this mascot have been made over the years Only the elePHPants based on the original design by Vincent Pontier are considered official by the community 206 These are collectable and some of them are extremely rare 207 Syntax editMain article PHP syntax and semantics nbsp A Hello World application in PHP 7 4 running on its built in development serverThe following Hello World program is written in PHP code embedded in an HTML document lt DOCTYPE html gt lt html gt lt head gt lt title gt PHP Hello World program lt title gt lt head gt lt body gt lt p gt lt Hello World gt lt p gt lt body gt lt html gt However as no requirement exists for PHP code to be embedded in HTML the simplest version of Hello World may be written like this with the closing tag span class cp gt span omitted as preferred in files containing pure PHP code 208 lt php echo Hello World The PHP interpreter only executes PHP code within its delimiters Anything outside of its delimiters is not processed by PHP although the non PHP text is still subject to control structures described in PHP code The most common delimiters are span class cp lt php span to open and span class cp gt span to close PHP sections The shortened form span class o lt span also exists This short delimiter makes script files less portable since support for them can be disabled in the local PHP configuration and it is therefore discouraged 209 210 Conversely there is no recommendation against the echo short tag span class o lt span 211 Prior to PHP 5 4 0 this short syntax for span class k echo span only works with the short open tag configuration setting enabled while for PHP 5 4 0 and later it is always available 212 213 209 The purpose of all these delimiters is to separate PHP code from non PHP content such as JavaScript code or HTML markup 214 So the shortest Hello World program written in PHP is lt Hello World The first form of delimiters span class cp lt php span and span class cp gt span in XHTML and other XML documents creates correctly formed XML processing instructions 215 This means that the resulting mixture of PHP code and other markups in the server side file is itself well formed XML Variables are prefixed with a dollar symbol and a type does not need to be specified in advance PHP 5 introduced type declarations that allow functions to force their parameters to be objects of a specific class arrays interfaces or callback functions However before PHP 7 type declarations could not be used with scalar types such as integers or strings 71 Below is an example of how PHP variables are declared and initialized lt php name John variable of string type being declared and initialized age 18 variable of integer type being declared and initialized height 5 3 variable of double type being declared and initialized echo name is height m tall n concatenating variables and strings echo name is age years old interpolating variables to string gt Unlike function and class names variable names are case sensitive Both double quoted and heredoc strings provide the ability to interpolate a variable s value into the string 216 PHP treats newlines as whitespace in the manner of a free form language and statements are terminated by a semicolon 217 PHP has three types of comment syntax span class cm span marks block and inline comments span class c1 span or span class c1 span are used for one line comments 218 The echo statement is one of several facilities PHP provides to output text citation needed In terms of keywords and language syntax PHP is similar to C style syntax span class k if span conditions span class k for span and span class k while span loops and function returns are similar in syntax to languages such as C C C Java and Perl citation needed Data types edit PHP is loosely typed It stores integers in a platform dependent range either as a 32 64 or 128 bit signed integer equivalent to the C language long type Unsigned integers are converted to signed values in certain situations which is different behaviour to many other programming languages 219 Integer variables can be assigned using decimal positive and negative octal hexadecimal and binary notations citation needed Floating point numbers are also stored in a platform specific range They can be specified using floating point notation or two forms of scientific notation 220 PHP has a native Boolean type that is similar to the native Boolean types in Java and C Using the Boolean type conversion rules non zero values are interpreted as true and zero as false as in Perl and C 220 The null data type represents a variable that has no value NULL is the only allowed value for this data type 220 Variables of the resource type represent references to resources from external sources These are typically created by functions from a particular extension and can only be processed by functions from the same extension examples include file image and database resources 220 Arrays can contain elements of any type that PHP can handle including resources objects and even other arrays Order is preserved in lists of values and in hashes with both keys and values and the two can be intermingled 220 PHP also supports strings which can be used with single quotes double quotes nowdoc or heredoc syntax 221 The Standard PHP Library SPL attempts to solve standard problems and implements efficient data access interfaces and classes 222 Functions edit PHP defines a large array of functions in the core language and many are also available in various extensions these functions are well documented online PHP documentation 223 However the built in library has a wide variety of naming conventions and associated inconsistencies as described under history above Custom functions may be defined by the developer function myAge int birthYear string calculate the age by subtracting the birth year from the current year yearsOld date Y birthYear return the age in a descriptive string return yearsOld yearsOld 1 year years echo I am currently myAge 1995 old As of 2024 the output of the above sample program is I am currently 29 years old In lieu of function pointers functions in PHP can be referenced by a string containing their name In this manner normal PHP functions can be used for example as callbacks or within function tables 224 User defined functions may be created at any time without being prototyped 223 224 Functions may be defined inside code blocks permitting a run time decision as to whether or not a function should be defined There is a function exists function that determines whether a function with a given name has already been defined Function calls must use parentheses with the exception of zero argument class constructor functions called with the PHP operator new in which case parentheses are optional citation needed Since PHP 4 0 1 create function a thin wrapper around eval allowed normal PHP functions to be created during program execution it was deprecated in PHP 7 2 and removed in PHP 8 0 225 in favor of syntax for anonymous functions or closures 226 that can capture variables from the surrounding scope which was added in PHP 5 3 Shorthand arrow syntax was added in PHP 7 4 227 function getAdder x return fn y gt x y adder getAdder 8 echo adder 2 prints 10 In the example above getAdder function creates a closure using passed argument span class nv x span which takes an additional argument span class nv y span and returns the created closure to the caller Such a function is a first class object meaning that it can be stored in a variable passed as a parameter to other functions etc 228 Unusually for a dynamically typed language PHP supports type declarations on function parameters which are enforced at runtime This has been supported for classes and interfaces since PHP 5 0 for arrays since PHP 5 1 for callables since PHP 5 4 and scalar integer float string and boolean types since PHP 7 0 71 PHP 7 0 also has type declarations for function return types expressed by placing the type name after the list of parameters preceded by a colon 70 For example the getAdder function from the earlier example could be annotated with types like so in PHP 7 function getAdder int x Closure return fn int y int gt x y adder getAdder 8 echo adder 2 prints 10 echo adder null throws an exception because an incorrect type was passed adder getAdder would also throw an exception By default scalar type declarations follow weak typing principles So for example if a parameter s type is int PHP would allow not only integers but also convertible numeric strings floats or booleans to be passed to that function and would convert them 71 However PHP 7 has a strict typing mode which when used disallows such conversions for function calls and returns within a file 71 PHP objects edit Basic object oriented programming functionality was added in PHP 3 and improved in PHP 4 11 This allowed for PHP to gain further abstraction making creative tasks easier for programmers using the language Object handling was completely rewritten for PHP 5 expanding the feature set and enhancing performance 229 In previous versions of PHP objects were handled like value types 229 The drawback of this method was that code had to make heavy use of PHP s reference variables if it wanted to modify an object it was passed rather than creating a copy of it In the new approach objects are referenced by handle and not by value citation needed PHP 5 introduced private and protected member variables and methods along with abstract classes final classes abstract methods and final methods It also introduced a standard way of declaring constructors and destructors similar to that of other object oriented languages such as C and a standard exception handling model Furthermore PHP 5 added interfaces and allowed for multiple interfaces to be implemented There are special interfaces that allow objects to interact with the runtime system Objects implementing ArrayAccess can be used with array syntax and objects implementing Iterator or IteratorAggregate can be used with the foreach language construct There is no virtual table feature in the engine so static variables are bound with a name instead of a reference at compile time 230 If the developer creates a copy of an object using the reserved word clone the Zend engine will check whether a clone method has been defined If not it will call a default clone which will copy the object s properties If a clone method is defined then it will be responsible for setting the necessary properties in the created object For convenience the engine will supply a function that imports the properties of the source object so the programmer can start with a by value replica of the source object and only override properties that need to be changed 231 The visibility of PHP properties and methods is defined using the keywords public private and protected The default is public if only var is used var is a synonym for public Items declared public can be accessed everywhere protected limits access to inherited classes and to the class that defines the item private limits visibility only to the class that defines the item 232 Objects of the same type have access to each other s private and protected members even though they are not the same instance citation needed Example edit The following is a basic example of object oriented programming in PHP 8 lt php abstract class User protected string name public function construct string name make first letter uppercase and the rest lowercase this gt name ucfirst strtolower name public function greet string return Hello my name is this gt name abstract public function job string class Student extends User public function construct string name private string course parent construct name public function job string return I learn this gt course class Teacher extends User public function construct string name private array teachingCourses parent construct name public function job string return I teach implode this gt teachingCourses students new Student Alice Computer Science new Student Bob Computer Science new Student Charlie Business Studies teachers new Teacher Dan Computer Science Information Security new Teacher Erin Computer Science 3D Graphics Programming new Teacher Frankie Online Marketing Business Studies E commerce foreach students teachers as users echo users 0 class s n array walk users function User user echo user gt greet user gt job n This program outputs the following Students Hello my name is Alice I learn Computer Science Hello my name is Bob I learn Computer Science Hello my name is Charlie I learn Business Studies Teachers Hello my name is Dan I teach Computer Science Information Security Hello my name is Erin I teach Computer Science 3D Graphics Programming Hello my name is Frankie I teach Online Marketing Business Studies E commerceImplementations editThe only complete PHP implementation is the original known simply as PHP It is the most widely used and is powered by the Zend Engine To disambiguate it from other implementations it is sometimes unofficially called Zend PHP The Zend Engine compiles PHP source code on the fly into an internal format that it can execute thus it works as an interpreter 233 234 It is also the reference implementation of PHP as PHP has no formal specification and so the semantics of Zend PHP define the semantics of PHP Due to the complex and nuanced semantics of PHP defined by how Zend works it is difficult for competing implementations to offer complete compatibility citation needed PHP s single request per script execution model and the fact that the Zend Engine is an interpreter leads to inefficiency as a result various products have been developed to help improve PHP performance In order to speed up execution time and not have to compile the PHP source code every time the web page is accessed PHP scripts can also be deployed in the PHP engine s internal format by using an opcode cache which works by caching the compiled form of a PHP script opcodes in shared memory to avoid the overhead of parsing and compiling the code every time the script runs An opcode cache Zend Opcache is built into PHP since version 5 5 235 Another example of a widely used opcode cache is the Alternative PHP Cache APC which is available as a PECL extension 236 While Zend PHP is still the most popular implementation several other implementations have been developed Some of these are compilers or support JIT compilation and hence offer performance benefits over Zend PHP at the expense of lacking full PHP compatibility citation needed Alternative implementations include the following HHVM HipHop Virtual Machine developed at Facebook and available as open source it converts PHP code into a high level bytecode commonly known as an intermediate language which is then translated into x86 64 machine code dynamically at runtime by a just in time JIT compiler resulting in up to 6 performance improvements 237 However since version 7 2 Zend has outperformed HHVM 238 and HHVM 3 24 is the last version to officially support PHP 239 HipHop developed at Facebook and available as open source it transforms the PHP scripts into C code and then compiles the resulting code reducing the server load up to 50 In early 2013 Facebook deprecated it in favour of HHVM due to multiple reasons including deployment difficulties and lack of support for the whole PHP language including the create function and eval constructs 240 Parrot a virtual machine designed to run dynamic languages efficiently the cross translator Pipp transforms the PHP source code into the Parrot intermediate representation which is then translated into the Parrot s bytecode and executed by the virtual machine PeachPie a second generation compiler to NET Common Intermediate Language CIL bytecode built on the Roslyn platform successor of Phalanger sharing several architectural components Phalanger compiles PHP into Net Common Intermediate Language bytecode predecessor of PeachPie Quercus compiles PHP into Java bytecodeLicensing editMain article PHP License PHP is free software released under the PHP License which stipulates that 241 Products derived from this software may not be called PHP nor may PHP appear in their name without prior written permission from group php net You may indicate that your software works in conjunction with PHP by saying Foo for PHP instead of calling it PHP Foo or phpfoo This restriction on the use of PHP makes the PHP License incompatible with the General Public License GPL while the Zend License is incompatible due to an advertising clause similar to that of the original BSD license 242 Development and community editPHP includes various free and open source libraries in its source distribution or uses them in resulting PHP binary builds PHP is fundamentally an Internet aware system with built in modules for accessing File Transfer Protocol FTP servers and many database servers including PostgreSQL MySQL Microsoft SQL Server and SQLite which is an embedded database LDAP servers and others Numerous functions are familiar to C programmers such as those in the stdio family are available in standard PHP builds 243 PHP allows developers to write extensions in C to add functionality to the PHP language PHP extensions can be compiled statically into PHP or loaded dynamically at runtime Numerous extensions have been written to add support for the Windows API process management on Unix like operating systems multibyte strings Unicode cURL and several popular compression formats Other PHP features made available through extensions include integration with Internet Relay Chat IRC dynamic generation of images and Adobe Flash content PHP Data Objects PDO as an abstraction layer used for accessing databases 244 245 246 247 248 249 250 and even speech synthesis Some of the language s core functions such as those dealing with strings and arrays are also implemented as extensions 251 The PHP Extension Community Library PECL project is a repository for extensions to the PHP language 252 Some other projects such as Zephir provide the ability for PHP extensions to be created in a high level language and compiled into native PHP extensions Such an approach instead of writing PHP extensions directly in C simplifies the development of extensions and reduces the time required for programming and testing 253 By December 2018 the PHP Group consisted of ten people Thies C Arntzen Stig Bakken Shane Caraveo Andi Gutmans Rasmus Lerdorf Sam Ruby Sascha Schumann Zeev Suraski Jim Winstead and Andrei Zmievski 254 Zend Technologies provides a PHP Certification based on PHP 7 255 exam and previously based on PHP 5 5 for programmers to become certified PHP developers The PHP Foundation editPHP nbsp FormationNovember 22 2021 2 years ago 2021 11 22 FounderAutomattic Laravel Acquia Zend Private Packagist Symfony Craft CMS Tideways PrestaShop JetBrains 256 Websitehttps thephp foundationOn 26 November 2021 the JetBrains blog announced the creation of The PHP Foundation which will sponsor the design and development of PHP 257 Year Commits Reviews RFCs2022 258 683 283 82023 259 784 702 17The foundation hires Core Developers to work on the PHP language s core repository Roman Pronskiy a member of the foundation s board said that they aim to pay market salaries to developers 260 The response to the foundation has mostly been positive with the foundation being praised for better supporting the language and helping to stop the decrease in the language s popularity 261 262 However it has also been criticised for adding breaking changes to minor versions of PHP such as in PHP 8 2 where initialising members of a class out with the original class scope would cause depreciation errors 263 these changes impacted a number of open source projects including WordPress 264 Installation and configuration edit nbsp Example output of the phpinfo function in PHP 7 1There are two primary ways for adding support for PHP to a web server as a native web server module or as a CGI executable PHP has a direct module interface called server application programming interface SAPI which is supported by many web servers including Apache HTTP Server Microsoft IIS and iPlanet Web Server Some other web servers such as OmniHTTPd support the Internet Server Application Programming Interface ISAPI which is Microsoft s web server module interface If PHP has no module support for a web server it can always be used as a Common Gateway Interface CGI or FastCGI processor in that case the web server is configured to use PHP s CGI executable to process all requests to PHP files 265 PHP FPM FastCGI Process Manager is an alternative FastCGI implementation for PHP bundled with the official PHP distribution since version 5 3 3 266 When compared to the older FastCGI implementation it contains some additional features mostly useful for heavily loaded web servers 267 When using PHP for command line scripting a PHP command line interface CLI executable is needed PHP supports a CLI server application programming interface SAPI since PHP 4 3 0 268 The main focus of this SAPI is developing shell applications using PHP There are quite a few differences between the CLI SAPI and other SAPIs although they do share many of the same behaviours 269 PHP has a direct module interface called SAPI for different web servers 270 in case of PHP 5 and Apache 2 0 on Windows it is provided in form of a DLL file called php5apache2 dll 271 which is a module that among other functions provides an interface between PHP and the web server implemented in a form that the server understands This form is what is known as a SAPI citation needed There are different kinds of SAPIs for various web server extensions For example in addition to those listed above other SAPIs for the PHP language include the Common Gateway Interface and command line interface 270 272 PHP can also be used for writing desktop graphical user interface GUI applications by using the PHP GTK extension PHP GTK is not included in the official PHP distribution 265 and as an extension it can be used only with PHP versions 5 1 0 and newer The most common way of installing PHP GTK is by compiling it from the source code 273 When PHP is installed and used in cloud environments software development kits SDKs are provided for using cloud specific features citation needed For example Amazon Web Services provides the AWS SDK for PHP 274 Microsoft Azure can be used with the Windows Azure SDK for PHP 275 Numerous configuration options are supported affecting both core PHP features and extensions 276 277 Configuration file php ini is searched for in different locations depending on the way PHP is used 278 The configuration file is split into various sections 279 while some of the configuration options can be also set within the web server configuration 280 Use edit nbsp A broad overview of the LAMP software bundle displayed here together with SquidPHP is a general purpose scripting language that is especially suited to server side web development in which case PHP generally runs on a web server Any PHP code in a requested file is executed by the PHP runtime usually to create dynamic web page content or dynamic images used on websites or elsewhere 281 It can also be used for command line scripting and client side graphical user interface GUI applications PHP can be deployed on most web servers many operating systems and platforms and can be used with many relational database management systems RDBMS Most web hosting providers support PHP for use by their clients It is available free of charge and the PHP Group provides the complete source code for users to build customize and extend for their own use 17 nbsp Dynamic web page example of server side scripting PHP and MySQL Originally designed to create dynamic web pages PHP now focuses mainly on server side scripting 282 and it is similar to other server side scripting languages that provide dynamic content from a web server to a client such as Python Microsoft s ASP NET Sun Microsystems JavaServer Pages 283 and a href Mod perl html title Mod perl mod perl a PHP has also attracted the development of many software frameworks that provide building blocks and a design structure to promote rapid application development RAD citation needed Some of these include PRADO CakePHP Symfony CodeIgniter Laravel Yii Framework Phalcon and Laminas offering features similar to other web frameworks The LAMP architecture has become popular in the web industry as a way of deploying web applications 284 PHP is commonly used as the P in this bundle alongside Linux Apache and MySQL although the P may also refer to Python Perl or some mix of the three Similar packages WAMP and MAMP are also available for Windows and macOS with the first letter standing for the respective operating system Although both PHP and Apache are provided as part of the macOS base install users of these packages seek a simpler installation mechanism that can be more easily kept up to date citation needed For specific and more advanced usage scenarios PHP offers a well defined and documented way for writing custom extensions in C or C 285 286 287 288 289 290 291 non primary source needed Besides extending the language itself in form of additional libraries extensions are providing a way for improving execution speed where it is critical and there is room for improvements by using a true compiled language 292 293 PHP also offers well defined ways for embedding itself into other software projects That way PHP can be easily used as an internal scripting language for another project also providing tight interfacing with the project s specific internal data structures 294 PHP received mixed reviews due to lacking support for multithreading at the core language level 295 though using threads is made possible by the pthreads PECL extension 296 297 A command line interface php cli and two ActiveX Windows Script Host scripting engines for PHP have been produced citation needed Popularity and usage statistics edit Usage share of PHP versions on 23 March 2024 four months after PHP 8 3 s release 18 298 299 300 301 PHP 8 3 2 10 of PHP 8 0 56 PHP 8 2 18 3 of PHP 8 4 85 PHP 8 1 40 7 of PHP 8 10 79 PHP 8 0 38 9 of PHP 8 10 31 PHP 7 4 69 0 of PHP 7 39 47 PHP 7 3 13 2 of PHP 7 7 55 PHP 7 2 9 60 of PHP 7 5 49 PHP 7 1 3 90 of PHP 7 2 23 PHP 7 0 4 30 of PHP 7 2 46 PHP 5 6 54 0 of PHP 5 8 7480 PHP 5 5 8 40 of PHP 5 1 3608 PHP 5 4 15 4 of PHP 5 2 4948 PHP 5 3 14 9 of PHP 5 2 4138 PHP 5 2 6 80 of PHP 5 1 1016 PHP 5 1 0 40 of PHP 5 0 0648 PHP 5 0 0 10 of PHP 5 0 0162 PHP 4 4 78 7 of PHP 4 0 1574 PHP 4 3 18 5 of PHP 4 0 0370 PHP 4 2 1 60 of PHP 4 0 0032 PHP 4 1 0 80 of PHP 4 0 0016 PHP 4 0 0 30 of PHP 4 0 0006 PHP is used for Web content management systems including MediaWiki 302 WordPress 303 Joomla 304 Drupal 305 Moodle 306 eZ Publish eZ Platform and SilverStripe 307 As of January 2013 update PHP was used in more than 240 million websites 39 of those sampled and was installed on 2 1 million web servers 308 As of 23 March 2024 update four months after PHP 8 3 s release PHP is used as the server side programming language on 76 4 of websites where the language could be determined PHP 7 is the most used version of the language with 57 2 of websites using PHP being on that version while 26 6 use PHP 8 16 2 use PHP 5 and 0 2 use PHP 4 18 Security editIn 2019 11 of all vulnerabilities listed by the National Vulnerability Database were linked to PHP 309 historically about 30 of all vulnerabilities listed since 1996 in this database are linked to PHP Technical security flaws of the language itself or of its core libraries are not frequent 22 in 2009 about 1 of the total although PHP applies to about 20 of programs listed 310 Recognizing that programmers make mistakes some languages include taint checking to automatically detect the lack of input validation which induces many issues Such a feature is being developed for PHP 311 but its inclusion into a release has been rejected several times in the past 312 313 There are advanced protection patches such as Suhosin and Hardening Patch specially designed for web hosting environments 314 Historically old versions of PHP had some configuration parameters and default values for such runtime settings that made some PHP applications prone to security issues Among these a href Magic quotes html title Magic quotes magic quotes gpc a and register globals 315 configuration directives were the best known the latter made any URL parameters become PHP variables opening a path for serious security vulnerabilities by allowing an attacker to set the value of any uninitialized global variable and interfere with the execution of a PHP script Support for magic quotes and register globals settings has been deprecated since PHP 5 3 0 and removed from PHP 5 4 0 316 Another example for the potential runtime settings vulnerability comes from failing to disable PHP execution for example by using the engine configuration directive 317 for the directory where uploaded files are stored enabling it can result in the execution of malicious code embedded within the uploaded files 318 319 320 The best practice is to either locate the image directory outside of the document root available to the web server and serve it via an intermediary script or disable PHP execution for the directory which stores the uploaded files citation needed Also enabling the dynamic loading of PHP extensions via enable dl configuration directive 321 in a shared web hosting environment can lead to security issues 322 323 Implied type conversions that result in different values being treated as equal sometimes against the programmer s intent can lead to security issues For example the result of the comparison 0e1234 0 is true because strings that are parsable as numbers are converted to numbers in this case the first compared value is treated as scientific notation having the value 0 101234 which is zero Errors like this resulted in authentication vulnerabilities in Simple Machines Forum 324 Typo3 325 and phpBB 326 when MD5 password hashes were compared The recommended way is to use hash equals for timing attack safety a href Strcmp html class mw redirect title Strcmp strcmp a or the identity operator as 0e1234 0 results in false 327 In a 2013 analysis of over 170 000 website defacements published by Zone H the most frequently 53 used technique was the exploitation of file inclusion vulnerability mostly related to insecure usage of the PHP language constructs include require and allow url fopen 328 329 As of 23 March 2024 update 4 months after PHP 8 3 release W3Techs reports that 83 9 of websites using PHP use versions 8 0 or older which are no longer supported by The PHP Development Team 330 PHP Version 5 is still used by 16 2 of all websites 299 It is highly recommended to migrate to PHP 8 1 or later and use random int 331 instead of rand 332 or mt rand 333 as the latter functions are not cryptographically secure There are two attacks that can be performed over PHP entropy sources seed attack and state recovery attack citation needed With current when GPU technologies an attacker can perform up to 230 MD5 calculations per second with a 250 GPU while with an additional 500 can reach up to 232 calculations 334 In combination with a birthday attack this can lead to serious security vulnerabilities citation needed See also edit nbsp Computer programming portal nbsp Free and open source software portalComparison of programming languages List of Apache MySQL PHP packages List of PHP accelerators List of PHP editors PEAR PHP Extension and Application Repository PHP accelerator Template processor XAMPP free and open source cross platform web server solution stack package Zend ServerReferences edit a b Lerdorf Rasmus June 8 1995 Announce Personal Home Page Tools PHP Tools Retrieved 7 June 2011 a b Lerdorf Rasmus 2007 04 26 PHP on Hormones history of PHP presentation by Rasmus Lerdorf given at the MySQL Conference in Santa Clara California The Conversations Network Archived from the original on 2019 01 06 Retrieved 2009 12 11 PHP News Archive 2024 www php net PHP Function arguments Manual secure php net PHP Release Archives museum museum php net PHP Preface Manual Stogov Dmitry dstogov December 4 2015 It s not a secret that some PHP7 optimization ideas came from HHVM LuaJIT and V8 Thank you HipHopVM SaraMG php7thankyou Tweet via Twitter PHP Hypertext Preprocessor www php net Retrieved 2020 02 12 a b Krill Paul 2013 11 18 Believe the hype PHP founder backs Facebook s HipHop technology InfoWorld Retrieved 2022 10 13 Announce Personal Home Page Tools PHP Tools groups google com Retrieved 2022 11 03 a b c d e f g h i History of PHP and related projects The PHP Group Retrieved 2008 02 25 a b History of PHP php net Olsson Mikael 2013 09 04 PHP Quick Scripting Reference Apress ISBN 978 1 4302 6284 8 PHP Manual Preface www php net Introduction What can PHP do PHP Manual Retrieved 2009 03 05 helicopter Port of node ar drone which allows user to control a Parrot AR Drone over PHP jolicode php ar drone JoliCode 2019 01 11 retrieved 2019 02 23 a b Embedding PHP in HTML O Reilly 2001 05 03 Archived from the original on 2008 02 19 Retrieved 2008 02 25 a b c Usage statistics of PHP for websites W3Techs World Wide Web Technology Surveys W3Techs Retrieved 23 March 2024 Usage Statistics and Market Share of PHP Version 8 for Websites March 2024 w3techs com Retrieved 2024 03 23 Lerdorf Rasmus 2012 07 20 I wonder why people keep writing that PHP was ever written in Perl It never was php Twitter Retrieved 2014 09 04 Lerdorf Rasmus 2007 04 26 PHP on Hormones The Conversations Network Archived from the original mp3 on 2019 01 06 Retrieved 2009 06 22 Lerdorf Rasmus 2007 Slide 3 slides for PHP on Hormones talk The PHP Group Retrieved 2009 06 22 Lerdorf Rasmus 1995 06 08 Announce Personal Home Page Tools PHP Tools Newsgroup comp infosystems www authoring cgi Retrieved 2006 09 17 Rasmus Lerdorf Senior Technical Yahoo PHP Behind the Mic 2003 11 19 Archived from the original on 2013 07 28 Alshetwi A B Rahmat R A A O Borhan M N Ismael S Ali A Irtema H I M Alfakhria A Y 2018 Web Based Expert System for Optimizing of Traffic Road in Developing Countries Retrieved 13 Feb 2024 Problems with PHP Retrieved 20 December 2010 php internals Re Function name consistency news php net 2013 12 28 Retrieved 2014 02 09 Rasmus Lerdorf Dec 16 2013 Re Flexible function naming Newsgroup php internals Retrieved December 26 2013 PHP Acronym Meaning Vote PHP net Archived from the original on August 15 2000 Zend Engine version 2 0 Feature Overview and Design Zend Technologies Ltd Archived from the original on 2006 07 19 Retrieved 2006 09 17 php net 2007 news archive The PHP Group 2007 07 13 Retrieved 2008 02 22 Kerner Sean Michael 2008 02 01 PHP 4 is Dead Long Live PHP 5 InternetNews Archived from the original on 2018 08 06 Retrieved 2018 12 16 Trachtenberg Adam 2004 07 15 Why PHP 5 Rocks O Reilly Archived from the original on 2016 03 31 Retrieved 2008 02 22 Late Static Binding in PHP Digital Sandwich 2006 02 23 Retrieved 2008 03 25 Static Keyword The PHP Group Retrieved 2008 03 25 GoPHP5 Archived from the original on 2011 07 17 PHP projects join forces to Go PHP 5 PDF GoPHP5 Press Release Archived from the original PDF on 2019 08 04 Retrieved 2008 02 23 GoPHP5 GoPHP5 Archived from the original on 2011 04 27 Retrieved 2008 02 22 PHP Installation and Configuration php net Retrieved 2013 10 29 PHP for Windows Binaries and sources releases 5 3 php net Retrieved 2013 10 29 PHP for Windows Binaries and sources releases 5 4 php net Retrieved 2013 10 29 PHP for Windows Binaries and sources releases 5 5 php net Retrieved 2013 10 29 PHP Supported Versions Types Strings PHP Manual PHP net Retrieved 2013 09 22 Details of the String Type PHP Manual PHP net Retrieved 2021 09 22 Andrei Zmievski 2005 08 10 PHP Unicode support design document Mailing list Retrieved 2014 02 09 PHP 5 5 or 6 0 Retrieved 2014 02 09 Andrei Zmievski 2011 04 22 The Good the Bad and the Ugly What Happened to Unicode and PHP 6 Retrieved 2014 02 09 Rasmus Lerdorf 2010 03 11 PHP 6 Mailing list Retrieved 2014 02 07 The Neverending Muppet Debate of PHP 6 v PHP 7 Archived from the original on 2015 11 19 Retrieved 2015 11 19 RFC Name of Next Release of PHP php net 2014 07 07 Retrieved 2014 07 15 Re PHP DEV VOTE RFC Name of Next Release of PHP again 2014 07 30 Retrieved 2014 07 30 phpng Refactored PHP Engine with Big Performance Improvement news php net PHP rfc phpng php net Retrieved 16 December 2014 a b PHP phpng php net Retrieved 2014 07 15 Merge branch ZendEngine3 github com 2014 12 05 Retrieved 2014 12 05 a b c PHP Release Process 2011 06 20 Retrieved 2013 10 06 a b PHP RFC Exceptions in the engine for PHP 7 php net Retrieved 2015 05 21 a b PHP RFC Uniform Variable Syntax php net 2014 05 31 Retrieved 2014 07 30 Online PHP editor output for udRhX 3v4l org PHP RFC Fix foreach behavior php net Retrieved 2015 05 21 PHP RFC Constructor behaviour of internal classes php net Retrieved 2015 05 21 PHP RFC Removal of dead or not yet PHP7 ported SAPIs and extensions php net Retrieved 2015 05 21 PHP RFC Fix list behavior inconsistency php net Retrieved 2015 05 21 PHP RFC Remove alternative PHP tags php net Retrieved 2015 05 21 PHP RFC Make defining multiple default cases in a switch a syntax error php net Retrieved 2015 05 21 PHP RFC Remove hex support in numeric strings php net Retrieved 2015 05 21 a b PHP RFC Integer Semantics php net Retrieved 2015 05 21 Making NaN and Infinity always become zero when cast to integer means more cross platform consistency and is also less surprising than what is currently produces PHP RFC ZPP Failure on Overflow php net Retrieved 2015 05 21 a b c RFC Return Types php net 2015 01 27 Retrieved 2015 01 28 a b c d e f RFC Scalar Type Declarations php net 2015 03 16 Retrieved 2015 03 17 a b c d e f g Brent What s new in PHP 8 Stitcher Retrieved 22 September 2020 PHP 8 Released PHP Retrieved 27 November 2020 a b PHP rfc jit wiki php net Retrieved 2019 04 05 Brent PHP 8 JIT performance in real life web applications Stitcher io Retrieved 4 October 2020 Rethams Derick PHP 8 A Quick Look at JIT a b Popov Nikita What s new in PHP 8 0 Nikita Popov PHP fwdays Archived from the original on 2021 12 11 Retrieved 4 October 2020 Daniele Carlo 25 May 2020 What s New in PHP 8 Features Improvements and the JIT Compiler Kinsta Retrieved 24 December 2020 Redmond Paul 15 July 2020 Match Expression is Coming to PHP 8 Laravel News Retrieved 4 October 2020 PHP 8 0 Match Expressions PHP Watch Retrieved 4 October 2020 Barnes Eric 27 November 2020 PHP 8 is now Released Laravel News Retrieved 24 December 2020 a b PHP RFC throw expression wiki php net Retrieved 14 August 2020 a b PHP RFC Nullsafe operator wiki php net Retrieved 14 August 2020 a b PHP rfc weakrefs wiki php net Retrieved 2019 04 05 Merchant Amit 13 June 2020 These new string functions are coming in PHP 8 Amit Merchant Retrieved 4 October 2020 Popov Nikita Call for participation Annotating internal function argument and return types Externals Retrieved 19 November 2020 PHP 8 ChangeLog PHP net Retrieved 2024 01 05 PHP PHP 8 1 0 Release Announcement PHP net Retrieved 2024 01 05 PHP 8 ChangeLog PHP net Retrieved 2024 01 05 PHP PHP 8 2 0 Release Announcement PHP net Retrieved 2024 01 05 a b c d e f g h i j k l Unsupported Branches php net Retrieved 2019 07 31 PHP 4 0 0 Released Retrieved 25 October 2020 a b c d PHP PHP 4 ChangeLog The PHP Group 2008 01 03 Retrieved 2008 02 22 PHP 4 1 0 Release Announcement Retrieved 25 October 2020 PHP 4 2 0 Release Announcement Retrieved 25 October 2020 PHP 4 3 0 Release Announcement Retrieved 25 October 2020 Using PHP from the command line PHP Manual The PHP Group Retrieved 2009 09 11 PHP 4 4 0 Release Announcement Retrieved 25 October 2020 PHP 4 4 0 Release Announcement PHP Mannual The PHP Group Retrieved 2013 11 24 PHP 5 0 0 Released Retrieved 25 October 2020 a b c PHP PHP 5 ChangeLog The PHP Group 2007 11 08 Retrieved 2008 02 22 PHP 5 1 0 Release Announcement Retrieved 25 October 2020 PHP manual PDO The PHP Group 2011 11 15 Retrieved 2011 11 15 PHP 5 2 0 Release Announcement Retrieved 25 October 2020 PHP 5 3 0 Release Announcement Retrieved 25 October 2020 PHP 5 4 0 Release Announcement Retrieved 25 October 2020 Built in web server Retrieved March 26 2012 PHP 5 5 0 Release Announcement Retrieved 25 October 2020 a b c d Supported Versions php net Retrieved 2017 12 13 PHP 5 5 0 changes php net Retrieved 2015 03 03 PHP 5 6 0 Release Announcement Retrieved 25 October 2020 Migrating from PHP 5 5 x to PHP 5 6 x php net Retrieved 2014 03 24 Resetting PHP 6 There have been books on the shelves purporting to cover PHP 6 since at least 2008 But in March 2010 the PHP 6 release is not out in fact it is not even close to out Recent events suggest that PHP 6 will not be released before 2011 if indeed it is released at all PHP 7 moves full speed ahead 2014 10 31 Recent versions of PHP have been part of the 5 x release series but there will be no PHP 6 We re going to skip version 6 because years ago we had plans for a 6 but those plans were very different from what we re doing now Gutmans said Going right to version 7 avoids confusion News Archive 2018 PHP 7 2 9 Released php net 2018 08 16 Retrieved 2018 08 16 PHP rfc size t and int64 next php net Retrieved 16 December 2014 PHP rfc abstract syntax tree php net Retrieved 16 December 2014 PHP rfc closure apply php net Retrieved 16 December 2014 PHP rfc integer semantics php net Retrieved 16 December 2014 PHP rfc isset ternary php net Retrieved 16 December 2014 RFC Unicode Codepoint Escape Syntax 2014 11 24 Retrieved 2014 12 19 Combined Comparison Spaceship Operator php net Retrieved 2015 05 21 PHP RFC Generator Delegation php net Retrieved 2015 05 21 PHP RFC Anonymous Classes php net Retrieved 2015 05 21 PHP RFC Easy User land CSPRNG php net Retrieved 2015 05 21 PHP RFC Group Use Declarations php net Retrieved 2015 05 21 PHP rfc iterable php net 2016 06 10 Retrieved 2023 06 30 PHP rfc nullable types php net 2014 04 10 Retrieved 2023 06 30 PHP rfc void return type php net 2015 11 09 Retrieved 2015 11 14 PHP rfc class constant visibility php net 2015 10 27 Retrieved 2015 12 08 PHP rfc short list syntax php net 2016 04 07 Retrieved 2023 06 30 PHP rfc multiple catch php net 2016 03 06 Retrieved 2023 06 30 PHP rfc object typehint wiki php net PHP rfc libsodium wiki php net PHP rfc allow abstract function override wiki php net PHP rfc parameter no type variance wiki php net PHP todo php73 wiki php net PHP rfc flexible heredoc nowdoc syntaxes wiki php net PHP rfc list reference assignment wiki php net PHP rfc pcre2 migration wiki php net PHP hrtime Manual php net PHP 7 4 0 Released php net Retrieved 2019 11 28 PHP rfc typed properties v2 wiki php net Retrieved 2019 04 04 PHP rfc preload wiki php net Retrieved 2019 04 04 PHP rfc null coalesce equal operator wiki php net Retrieved 2019 04 04 PHP rfc improve openssl random pseudo bytes wiki php net Retrieved 2019 04 04 PHP rfc ffi wiki php net Retrieved 2019 04 05 PHP rfc permanent hash ext wiki php net Retrieved 2019 04 05 PHP rfc password registry wiki php net Retrieved 2019 04 05 PHP rfc mb str split wiki php net Retrieved 2019 04 05 PHP rfc reference reflection wiki php net Retrieved 2019 04 05 PHP rfc deprecate and remove ext wddx wiki php net Retrieved 2019 04 05 PHP rfc custom object serialization wiki php net Retrieved 2019 04 05 PHP Supported Versions php net Retrieved 2023 11 26 PHP rfc negative array index wiki php net Retrieved 2019 04 05 PHP RFC Validation for abstract trait methods wiki php net Retrieved 14 August 2020 PHP RFC Saner string to number comparisons wiki php net Retrieved 14 August 2020 PHP RFC Saner numeric strings wiki php net Retrieved 14 August 2020 PHP RFC Stricter type checks for arithmetic bitwise operators wiki php net Retrieved 14 August 2020 PHP RFC Reclassifying engine warnings wiki php net Retrieved 14 August 2020 PHP rfc consistent type errors wiki php net Retrieved 2019 04 05 PHP rfc lsp errors wiki php net Retrieved 2019 05 26 PHP RFC Locale independent float to string cast wiki php net Retrieved 14 August 2020 PHP RFC Variable Syntax Tweaks wiki php net Retrieved 14 August 2020 PHP RFC Attributes V2 wiki php net Retrieved 14 August 2020 PHP RFC Attribute Amendments wiki php net Retrieved 14 August 2020 PHP RFC Shorter Attribute Syntax wiki php net Retrieved 2020 06 20 PHP RFC Shorter Attribute Syntax Change wiki php net Retrieved 14 August 2020 PHP RFC Named Arguments wiki php net Retrieved 14 August 2020 PHP RFC Match expression v2 wiki php net Retrieved 14 August 2020 PHP RFC Constructor Property Promotion wiki php net Retrieved 14 August 2020 PHP RFC Union Types 2 0 wiki php net Retrieved 14 August 2020 PHP RFC Mixed Type v2 wiki php net Retrieved 14 August 2020 PHP RFC Static return type wiki php net Retrieved 14 August 2020 PHP RFC non capturing catches wiki php net Retrieved 14 August 2020 Andre Tyson PHP RFC Always available JSON extension PHP Retrieved 25 October 2020 PHP todo php81 wiki php net Retrieved 2022 06 16 PHP RFC Explicit octal integer literal notation wiki php net Retrieved 2020 11 25 PHP RFC Enumerations wiki php net Retrieved 2021 03 25 PHP rfc readonly properties v2 wiki php net Retrieved 2021 11 26 PHP rfc first class callable syntax wiki php net Retrieved 2021 11 26 PHP rfc new in initializers wiki php net Retrieved 2021 11 26 PHP rfc pure intersection types wiki php net Retrieved 2021 11 26 PHP rfc noreturn type wiki php net Retrieved 2021 11 26 PHP rfc final class const wiki php net Retrieved 2021 11 26 PHP rfc fibers wiki php net Retrieved 2021 11 26 PHP todo php82 wiki php net Retrieved 2022 06 16 PHP rfc readonly classes wiki php net Retrieved 2022 06 16 PHP rfc null false standalone types wiki php net Retrieved 2022 06 16 PHP rfc true type wiki php net Retrieved 2022 06 16 PHP rfc strtolower ascii wiki php net Retrieved 2022 06 16 PHP rfc dnf types wiki php net Retrieved 2023 02 07 PHP rfc constants in traits wiki php net Retrieved 2023 02 07 PHP 8 3 0 Released php net 23 November 2023 Retrieved 24 November 2023 PHP rfc typed class constants wiki php net Retrieved 2023 12 17 PHP rfc dynamic class constant fetch wiki php net Retrieved 2023 12 17 PHP rfc marking overriden methods wiki php net Retrieved 2023 12 17 PHP rfc readonly amendments wiki php net Retrieved 2023 12 17 PHP rfc json validate wiki php net Retrieved 2023 12 17 PHP rfc randomizer additions wiki php net Retrieved 2023 12 17 PHP todo php84 php net 26 March 2024 Retrieved 26 March 2024 PHP ElePHPant 4 Oct 2014 Retrieved 4 Oct 2014 Redirecting wwphp fb github io The PHP Mascot s Birth Creator Of The elePHPant Vincent Pontier Reveals The True Story 7php com 2014 01 06 ElePHPant PHP earth Retrieved 2024 02 13 PHP ElePHPant www php net A Field Guide to Elephpants afieldguidetoelephpants net tags Manual php net Retrieved 2014 02 17 a b PHP rfc shortags php net 2008 04 03 Retrieved 2014 05 08 PHP Basic syntax The PHP Group Retrieved 2008 02 22 Basic Coding Standard PHP Framework Interoperability Group Retrieved 2016 01 03 echo Manual php net Retrieved 2014 02 17 Description of core php ini directives Manual php net 2002 03 17 Retrieved 2014 02 17 Your first PHP enabled page The PHP Group Retrieved 2008 02 25 Bray Tim et al 26 November 2008 Processing Instructions Extensible Markup Language XML 1 0 Fifth Edition W3C Retrieved 2009 06 18 Variables The PHP Group Retrieved 2008 03 16 Instruction separation The PHP Group Retrieved 2008 03 16 Comments The PHP Group Retrieved 2008 03 16 Integers in PHP running with scissors and portability MySQL Performance Blog March 27 2007 Retrieved 2007 03 28 a b c d e Types The PHP Group Retrieved 2008 03 16 Strings The PHP Group Retrieved 2008 03 21 SPL StandardPHPLibrary PHP net March 16 2009 Retrieved 2009 03 16 a b User defined functions PHP manual php net 2014 07 04 Retrieved 2014 07 07 a b Variable functions PHP manual php net 2014 07 04 Retrieved 2014 07 07 create function PHP manual php net 2022 04 06 Retrieved 2022 05 04 Anonymous functions PHP manual php net 2014 07 04 Retrieved 2014 07 07 Arrow Functions PHP manual php net Retrieved 2021 01 25 Christian Seiler Dmitry Stogov 2008 07 01 Request for Comments Lambda functions and closures php net Retrieved 2014 07 07 a b PHP 5 Object References mjtsai com Retrieved 2008 03 16 Classes and Objects PHP 5 The PHP Group Retrieved 2008 03 16 Object cloning The PHP Group Retrieved 2008 03 16 Visibility PHP Manual theserverpages com 2005 05 19 Archived from the original on 2010 09 24 Retrieved 2010 08 26 How do computer languages work Archived from the original on 2011 07 16 Retrieved 2009 11 04 Gilmore W Jason 2006 01 23 Beginning PHP and MySQL 5 From Novice to Professional Apress p 43 ISBN 1590595521 VOTE Integrating Zend Optimizer into the PHP distribution news php net Retrieved 2013 03 08 Alternative PHP Cache PHP net Archived from the original on 2013 11 15 Retrieved 2013 09 21 We are the 98 5 and the 16 HipHop Virtual Machine hhvm com December 2013 Retrieved 2014 02 23 The Definitive PHP 5 6 7 0 7 1 7 2 amp 7 3 Benchmarks 2019 2019 01 14 Retrieved 2019 04 19 Krill Paul 2017 09 20 Forget PHP Facebook s HHVM engine switches to Hack instead InfoWorld Retrieved 2019 02 06 Announcement on GitHub removing HPHPc support GitHub Retrieved 2013 05 24 The PHP License version 3 01 Retrieved 2010 05 20 GPL Incompatible Free Software Licenses Various Licenses and Comments about Them Free Software Foundation Retrieved 2011 01 03 PHP Function and Method listing Manual The PHP Group Retrieved 2015 01 14 Introduction Manual php net 2013 06 07 Retrieved 2013 06 13 Darryl Patterson 5 August 2004 Simplify Business Logic with PHP DataObjects O Reilly Media ibm com Archived from the original on 16 December 2014 Retrieved 16 December 2014 IBM United States Retrieved 16 December 2014 Five common PHP database problems ibm com 2006 08 01 Retrieved 2013 06 13 IBM Redbooks Developing PHP Applications for IBM Data Servers redbooks ibm com Retrieved 16 December 2014 php architect Magazine The Journal for PHP Programmers www phparch com Krill Paul 19 October 2005 PHP catching on at enterprises vying with Java InfoWorld Archived from the original on 13 July 2014 Cross Reference PHP 5 4 ext standard php net Archived from the original on 16 March 2012 Retrieved 16 December 2014 Developing Custom PHP Extensions devnewz com 2002 09 09 Archived from the original on 2008 02 18 Retrieved 2008 02 25 Why Zephir zephir lang com 2015 10 20 Retrieved 2015 12 14 PHP Credits Retrieved 2018 12 16 Learn PHP Via PHP Training and PHP Certification www zend com Retrieved 2020 11 16 Walker James 2021 12 13 What the New PHP Foundation Means for PHP s Future How To Geek Retrieved 2023 11 26 The New Life of PHP The PHP Foundation The PhpStorm Blog The JetBrains Blog 22 November 2021 Retrieved 2022 06 16 The PHP Foundation Impact and Transparency Report 2022 thephp foundation Retrieved 2023 11 27 Pronskiy Roman 2024 02 26 The PHP Foundation Impact and Transparency Report 2023 The PHP Foundation Retrieved 2024 04 01 Anderson Tim PHP Foundation formed to fund core developers www theregister com Retrieved 2023 12 05 Programming languages This old favourite is gaining popularity again ZDNET Retrieved 2023 12 05 PHP 8 1 Released With Enums Read Only Properties and Fibers www i programmer info Retrieved 2023 12 05 It s time for the PHP Foundation to StopBreakingPHP trongate io Retrieved 2023 11 27 WordPress 6 4 PHP Compatibility Make WordPress Hosting 2023 11 16 Retrieved 2023 11 27 a b General Installation Considerations php net Retrieved 2013 09 22 News Archive PHP 5 3 3 Released php net 2010 07 22 FastCGI Process Manager FPM php net Retrieved 2013 09 22 Command line usage Introduction php net Retrieved 2013 09 22 Command line usage Differences to other SAPIs php net Retrieved 2013 09 22 a b General Installation Considerations php net Retrieved 2013 09 22 PHP Apache 2 x on Microsoft Windows php net Archived from the original on 2013 09 26 Retrieved 2013 09 22 Command line usage Introduction php net Retrieved 2013 09 22 Installing PHP GTK 2 php net Retrieved 2013 09 22 AWS SDK for PHP aws amazon com Retrieved 2014 03 06 Windows Azure SDK for PHP Interoperability Bridges and Labs Center interoperabilitybridges com Archived from the original on 2014 03 20 Retrieved 2014 03 06 Runtime configuration Table of contents php net Retrieved 2013 09 22 php ini directives List of php ini directives php net Retrieved 2013 09 22 Runtime configuration The configuration file PHP net Retrieved 2013 09 22 php ini directives List of php ini sections PHP net Retrieved 2013 09 22 Runtime configuration Where a configuration setting may be set PHP net Retrieved 2013 09 22 PHP Manual Image Processing and GD php net Retrieved 2011 04 09 PHP Server Side Scripting Language Indiana University 2007 04 04 Archived from the original on 2016 01 21 Retrieved 2008 02 25 JavaServer Pages Technology JavaServer Pages Comparing Methods for Server Side Dynamic Content White Paper Sun Microsystems Retrieved 2008 02 25 Five simple ways to tune your LAMP application IBM 2011 01 25 PHP at the core Extension structure PHP net Retrieved 2013 09 22 PHP at the core The counter Extension A Continuing Example PHP net Retrieved 2013 09 22 Extension Writing Part I Introduction to PHP and Zend Zend Technologies 2005 03 01 Archived from the original on 2013 09 24 Retrieved 2013 09 22 Extension Writing Part II Parameters Arrays and ZVALs Zend Technologies 2005 06 06 Archived from the original on 2013 09 26 Retrieved 2013 09 22 Extension Writing Part II Parameters Arrays and ZVALs continued Zend Technologies 2005 06 06 Archived from the original on 2013 09 26 Retrieved 2013 09 22 Extension Writing Part III Resources Zend Technologies 2006 05 12 Archived from the original on 2013 09 26 Retrieved 2013 09 22 Wrapping C Classes in a PHP Extension Zend Technologies 2009 04 22 Archived from the original on 2013 09 20 Retrieved 2013 09 22 Extending PHP with C Stack Overflow Retrieved 2013 09 22 How can I use C code to interact with PHP Stack Overflow Retrieved 2013 09 22 Golemon Sara 2006 Extending and Embedding PHP Sams ISBN 978 0 672 32704 9 Request 46919 Multithreading PHP net Retrieved 2013 09 22 pthreads Introduction PHP Manual PHP net Retrieved 2013 09 22 PECL Package pthreads pecl php net Retrieved 2014 02 09 Usage Statistics and Market Share of PHP Version 4 for Websites March 2024 w3techs com a b Usage Statistics and Market Share of PHP Version 5 for Websites March 2024 w3techs com Usage Statistics and Market Share of PHP Version 7 for Websites March 2024 w3techs com Usage Statistics and Market Share of PHP Version 8 for Websites march 2024 w3techs com Manual Installation requirements PHP MediaWiki 2010 01 25 Retrieved 2010 02 26 PHP is the programming language in which MediaWiki is written About WordPress Retrieved 2010 02 26 WordPress was built on PHP Kempkens Alex Joomla Content Management System to build websites amp apps PHP and Drupal Drupal org 16 September 2007 Retrieved 2010 06 13 About Moodle org Retrieved 2009 12 20 Server requirements of SilverStripe Archived from the original on 28 November 2014 Retrieved 13 October 2014 SilverStripe requires PHP 5 3 2 Ide Andy 2013 01 31 PHP just grows amp grows Retrieved 2013 04 01 National Vulnerability Database NVD Search Vulnerabilities Statistics Retrieved 2019 11 22 PHP related vulnerabilities on the National Vulnerability Database 2012 07 05 Retrieved 2013 04 01 PHP rfc taint wiki php net Developer Meeting Notes Nov 2005 Taint mode decision November 2007 Archived from the original on 2009 02 26 Hardened PHP Project 2008 08 15 Archived from the original on 2019 02 24 Retrieved 2019 08 22 Security Using Register Globals PHP Manual PHP net Retrieved 2013 09 22 Magic Quotes PHP Manual PHP net Retrieved 2014 01 17 engine configuration directive PHP Runtime Configuration PHP net Retrieved 2014 02 13 PHP Security Exploit With GIF Images 2007 06 22 Archived from the original on 2013 09 27 Retrieved 2013 09 22 PHP security exploit with GIF images PHP Classes blog 2007 06 20 Retrieved 2013 09 22 Passing Malicious PHP Through getimagesize 2007 06 04 Archived from the original on 2013 09 21 Retrieved 2013 09 22 enable dl configuration directive PHP Runtime Configuration PHP net Retrieved 2014 02 13 PHP function reference dl PHP net Retrieved 2013 09 22 My host won t fix their Trojan WebHosting Talk Retrieved 2013 09 22 Raz0r 25 January 2013 Simple Machines Forum lt 2 0 3 Admin Password Reset a href Template Cite web html title Template Cite web cite web a CS1 maint numeric names authors list link Nibble Security TYPO3 SA 2010 020 TYPO3 SA 2010 022 EXPLAINED Kriptostojkost i nebezopasnoe sravnenie Ahack ru in Russian Comparison operators PHP net Krawczyk Pawel 2013 Most common attacks on web applications IPSec pl Archived from the original on 2015 04 15 Retrieved 2015 04 15 Krawczyk Pawel 2013 So what are the most critical application flaws On new OWASP Top 10 IPSec pl Retrieved 2015 04 15 Usage Statistics and Market Share of PHP for Websites March 2024 w3techs com Retrieved 2024 03 23 PHP Random int Manual PHP Rand Manual PHP Mt rand Manual I Forgot Your Password Randomness Attacks Against PHP Applications www readkong com Further reading editListen to this article 35 minutes source source nbsp This audio file was created from a revision of this article dated 23 November 2011 2011 11 23 and does not reflect subsequent edits Audio help More spoken articles Ford Paul June 11 2015 What is Code Bloomberg Businessweek What s the Absolute Minimum I Must Know About PHP External links editOfficial website nbsp PHP at Curlie PHP at Wikipedia s sister projects nbsp Media from Commons nbsp Textbooks from Wikibooks nbsp Resources from Wikiversity nbsp Documentation from MediaWiki Retrieved from https en wikipedia org w index php title PHP amp oldid 1218920119 PHP 7, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.