Loading AI tools
Scripting language created in 1994 From Wikipedia, the free encyclopedia
PHP is a general-purpose scripting language geared towards web development.[9] It was originally created by Danish-Canadian programmer Rasmus Lerdorf in 1993 and released in 1995.[10][11] The PHP reference implementation is now produced by the PHP Group.[12] PHP was originally an abbreviation of Personal Home Page,[13][14] but it now stands for the recursive acronym PHP: Hypertext Preprocessor.[15]
Paradigm | Multi-paradigm: imperative, functional, object-oriented, procedural, reflective |
---|---|
Designed by | Rasmus Lerdorf |
Developer | The PHP Development Team, Zend Technologies, PHP Foundation |
First appeared | 8 June 1995[1][2] |
Stable release | 8.3.12
/ 26 September 2024[3] |
Preview release | 8.4.0 Beta 5
/ 12 September 2024[4] |
Typing discipline | Dynamic, weak, gradual[5] |
Implementation language | C (primarily; some components C++) |
OS | Unix-like, Windows, macOS, IBM i, OpenVMS, IBM Z |
License | dual licensed GNU General Public License version 2 or any later version and PHP License for PHP versions 3.0 or earlier.[6] Only PHP License (most of Zend engine under Zend Engine License) for 3.01x and later versions. |
Filename extensions | .php ,.phar ,.phtml ,.pht ,.phps |
Website | www |
Major implementations | |
Zend Engine, HHVM, PeachPie, Quercus, Parrot | |
Influenced by | |
Perl, C, C++, Java,[7] Tcl,[2] JavaScript[8] | |
Influenced | |
Hack, JSP, ASP, React JS | |
|
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[16] and drone control.[17] 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.[18]
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 May 2024[update] (the six months after the PHP 8.3 release), PHP is used by 76.2% of all websites whose programming language could be determined, and 55.1% thereof use PHP 7 which is outdated and known to be insecure.[19][20]
PHP development began in 1993[10] when Rasmus Lerdorf wrote several Common Gateway Interface (CGI) programs in C,[21][22] 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:[23]
<!--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][24] 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.[13][12]
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."[25] A development team began to form and, after months of work and beta testing, officially released PHP/FI 2 in November 1997.[26]
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.[27] In some cases, the function names were chosen to match the lower-level libraries which PHP was "wrapping",[28] 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.[29]
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.[12][30] 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.[31] They also founded Zend Technologies in Ramat Gan, Israel.[12]
On 22 May 2000, PHP 4, powered by the Zend Engine 1.0, was released.[12] 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.[32][33]
On 1 July 2004, PHP 5 was released, powered by the new Zend Engine II.[12] 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.[34] 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.[35][36]
Many high-profile open-source projects ceased to support PHP 4 in new code from February 5, 2008, because of the GoPHP5 initiative,[37] provided by a consortium of PHP developers promoting the transition from PHP 4 to PHP 5.[38][39]
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.[40] For PHP versions 5.3 and 5.4, the only available Microsoft Windows binary distributions were 32-bit IA-32 builds,[41][42] 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.[43]
Official security support for PHP 5.6 ended on 31 December 2018.[44]
PHP received mixed reviews due to lacking native Unicode support at the core language level.[45][46] 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.[47] 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.[48]
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.[49] 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.[50] Initial hopes were that a new plan would be formed for Unicode integration, but by 2014 none had been adopted.[citation needed]
During 2014 and 2015, a new major PHP version was developed, PHP 7. The numbering of this version involved some debate among internal developers.[51] 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.[52] After a vote, the name PHP 7 was chosen.[53]
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,[54] and aimed to optimize PHP performance by refactoring the Zend Engine while retaining near-complete language compatibility.[55] 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.[56] Because of the significant changes, the reworked Zend Engine was called Zend Engine 3, succeeding Zend Engine 2 used in PHP 5.[57]
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.[58] 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:
->
, []
, ()
,{}
, and ::
, with arbitrary meaningful left-side expressions.[60]foreach
statement was changed to be more predictable.[62]mysql
extension.[64]list()
operator was changed to remove support for strings.[65]<%
and %>
and <script language="php"> ... </script>
.[66]default
clauses was fixed.[67]PHP 7 also included new language features. Most notably, it introduced return type declarations for functions[71] which complement the existing parameter type declarations, and support for the scalar types (integer, float, string, and boolean) in parameter and return type declarations.[72]
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.[73][74] New features and notable changes include:
Just-in-time compilation is supported in PHP 8.[75]
PHP 8's JIT compiler can provide substantial performance improvements for some use cases,[76][77] 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.[78] Substantial improvements are expected more for mathematical-type operations than for common web-development use cases.[78] 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.[79]
PHP 8 introduced the match
expression.[80] The match expression is conceptually similar to a switch
statement and is more compact for some use cases.[81] Because match
is an expression, its result can be assigned to a variable or returned from a function.[82]
PHP 8 introduced union types, a new static
return type, and a new mixed
type.[73]
"Attributes", often referred to as "annotations" in other programming languages, were added in PHP 8, which allow metadata to be added to classes.[73]
throw
was changed from being a statement to being an expression.[83] This allows exceptions to be thrown in places that were not previously possible.[73]
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.[84] 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.[73] This reduces the amount of boilerplate code that must be written.[85]
Other minor changes include support for use of ::class
on objects, which serves as an alternative for the use of get_class()
;[73] 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.[74]
WeakMap
holds references to objects, but these references do not prevent such objects from being garbage collected.[86] This can provide performance improvements in scenarios where data is being cached; this is of particular relevance for object–relational mappings (ORM).[73]DateTime
objects from interfaces, and the addition of a Stringable
interface that can be used for type hinting.[73]str_contains()
, str_starts_with()
, and str_ends_with()
;[87] fdiv()
; get_debug_type()
; and get_resource_id()
[73]token_get_all()
[73]PHP 8.1 was released on November 25, 2021.[89] 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.[90]
PHP 8.2 was released on December 8, 2022.[91] 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,[92] Sensitive Parameter value redaction, and a ton of other features.
Version | Release date | Supported until[93] | Notes |
---|---|---|---|
1.0 | 8 June 1995 | Officially called "Personal Home Page Tools (PHP Tools)". This is the first use of the name "PHP".[12] | |
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. | |
3.0 | 6 June 1998 | 20 October 2000[93] | Development moves from one person to multiple developers. Zeev Suraski and Andi Gutmans rewritten the base for this version.[12] |
4.0 | 22 May 2000[94] | 23 June 2001[93] | Added more advanced two-stage parse/execute tag-parsing system called the Zend engine.[95] |
4.1 | 10 December 2001[96] | 12 March 2002[93] | Introduced "superglobals" ($_GET , $_POST , $_SESSION , etc.)[95] |
4.2 | 22 April 2002[97] | 6 September 2002[93] | 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.[95] |
4.3 | 27 December 2002[98] | 31 March 2005[93] | Introduced the command-line interface (CLI), to supplement the CGI.[95][99] |
4.4 | 11 July 2005[100] | 7 August 2008[93] | Fixed a memory corruption bug, which required breaking binary compatibility with extensions compiled against PHP version 4.3.x.[101] |
5.0 | 13 July 2004[102] | 5 September 2005[93] | Zend Engine II with a new object model.[103] |
5.1 | 24 November 2005[104] | 24 August 2006[93] | Performance improvements with the introduction of compiler variables in re-engineered PHP Engine.[103] Added PHP Data Objects (PDO) as a consistent interface for accessing databases.[105] |
5.2 | 2 November 2006[106] | 6 January 2011[93] | Enabled the filter extension by default. Native JSON support.[103] |
5.3 | 30 June 2009[107] | 14 August 2014[93] | 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. |
5.4 | 1 March 2012[108] | 3 September 2015[93] | 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.[109] Several improvements to existing features, performance and reduced memory requirements. |
5.5 | 20 June 2013[110] | 10 July 2016[111] | Support for generators, finally blocks for exceptions handling, OpCache (based on Zend Optimizer+) bundled in official distribution.[112] |
5.6 | 28 August 2014[113] | 31 December 2018[111] | 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.[114] |
6.x | Not released | — | Abandoned version of PHP that planned to include native Unicode support.[115][116] |
7.0 | 3 December 2015[117] | 10 January 2019[58] | Zend Engine 3 (performance improvements[56] and 64-bit integer support on Windows[118]), uniform variable syntax,[60] AST-based compilation process,[119] added Closure::call() ,[120] bitwise shift consistency across platforms,[121] ?? (null coalesce) operator,[122] Unicode code point escape syntax,[123] return type declarations,[71] scalar type (integer, float, string and boolean) declarations,[72] <=> "spaceship" three-way comparison operator,[124] generator delegation,[125] anonymous classes,[126] simpler and more consistently available CSPRNG API,[127] replacement of many remaining internal PHP "errors" with the more modern exceptions,[59] and shorthand syntax for importing multiple items from a namespace.[128] |
7.1 | 1 December 2016 | 1 December 2019[111] | iterable type,[129] nullable types,[130] void return type,[131] class constant visibility modifiers,[132] short list syntax,[133] multi-catch[134] |
7.2 | 30 November 2017 | 30 November 2020[111] | Object parameter and return type declaration,[135] libsodium extension,[136] abstract method overriding,[137] parameter type widening[138] |
7.3 | 6 December 2018[139] | 6 December 2021 | Flexible Heredoc and Nowdoc syntax,[140] support for reference assignment and array deconstruction with list() ,[141] PCRE2 support,[142] hrtime function[143] |
7.4 | 28 November 2019[144] | 28 November 2022 | Typed properties 2.0,[145] preloading,[146] null-coalescing assignment operator,[147] improve openssl_random_pseudo_bytes ,[148] weak references,[86] foreign function interface (FFI),[149] always available hash extension,[150] password hash registry,[151] multibyte string splitting,[152] reflection for references,[153] unbundle ext/wddx,[154] new custom object serialization mechanism[155] |
8.0 | 26 November 2020[156] | 26 November 2023 | Just-In-Time (JIT) compilation,[75] arrays starting with a negative index,[157] stricter/saner language semantics (validation for abstract trait methods),[158] saner string to number comparisons,[159] saner numeric strings,[160] TypeError on invalid arithmetic/bitwise operators,[161] reclassification of various engine errors,[162] consistent type errors for internal functions,[163] fatal error for incompatible method signatures[164]), locale-independent float to string conversion,[165] variable syntax tweaks,[166] attributes,[167][168][169][170] named arguments,[171] match expression,[172] constructor property promotion,[173] union types,[174] mixed type,[175] static return type,[176] nullsafe operator,[84] non-capturing catches,[177] throw expression,[83] JSON extension is always available.[178] |
8.1 | 25 November 2021[179] | 31 December 2025 | Explicit octal integer literal notation,[180] enumerations,[181] read-only properties,[182] first-class callable syntax,[183] new in initializers,[184] pure intersection types,[185] never return type,[186] final class constraints,[187] fibers[188] |
8.2 | 8 December 2022[189] | 31 December 2026 | Readonly classes,[190] null , false , and true as stand-alone types,[191][192] locale-independent case conversion,[193] disjunctive normal form types,[194] constants in traits[195] |
8.3 | 23 November 2023[196] | 31 December 2027 | Typed class constants,[197] dynamic class constant fetch,[198] #[\Override] attribute,[199] deep-cloning of read-only properties,[200] new json_validate function,[201] randomizer additions,[202] the command-line linter supports multiple files |
8.4 | 21 November 2024[203] | 31 December 2028 | |
Legend: Old version, not maintained Old version, still maintained Latest version Future release |
Beginning on 28 June 2011, the PHP Development Team implemented a timeline for the release of new versions of PHP.[58] 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.
The mascot of the PHP project is the elePHPant, a blue elephant with the PHP logo on its side, designed by Vincent Pontier[204] in 1998.[205] "The (PHP) letters were forming the shape of an elephant if viewed in a sideways angle."[206] The elePHPant is sometimes differently coloured when in plush toy form.[207]
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.[208] These are collectable and some of them are extremely rare.[209]
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.[210]
<?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.[211][212] Conversely, there is no recommendation against the echo short tag <?=
.[213] 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.[214][215][211] The purpose of all these delimiters is to separate PHP code from non-PHP content, such as JavaScript code or HTML markup.[216] 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.[217] 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.[72]
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.[218] PHP treats newlines as whitespace in the manner of a free-form language, and statements are terminated by a semicolon.[219] PHP has three types of comment syntax: /* */
marks block and inline comments; //
or #
are used for one-line comments.[220] 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]
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.[221] Integer variables can be assigned using decimal (positive and negative), octal, hexadecimal, and binary notations.