Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

PHP

Listen to this article
From Wikipedia, the free encyclopedia
Scripting language created in 1994
This article is about the scripting language. For other uses, seePHP (disambiguation).
PHP
ParadigmMulti-paradigm:imperative,functional,object-oriented,procedural,reflective
Designed byRasmus Lerdorf
DeveloperThe PHP Development Team,Zend Technologies,PHP Foundation
First appeared8 June 1995; 30 years ago (1995-06-08)[1][2]
Stable release
8.5.2[3] Edit this on Wikidata / 15 January 2026; 32 days ago (15 January 2026)
Typing disciplineDynamic,weak,gradual[4]
Implementation languageC (primarily; some components inC++)
OSUnix-like,Windows,macOS,IBM i,OpenVMS,IBM Z
LicensePHP License[a]
Filename extensions.php,.phar,.phtml,.pht,.phps
Websitephp.net
Majorimplementations
Zend Engine,HHVM,PeachPie,Quercus,Parrot
Influenced by
Perl,C,C++,Java,[6]Tcl,[2]JavaScript[7]
Influenced
Hack,JSP,ASP,React JS

PHP is ageneral-purposescripting language geared towardsweb development.[8] It was created byDanish-CanadianprogrammerRasmus Lerdorf in 1993 and released in 1995.[9][10] The PHPreference implementation is now produced by the PHP Group.[11] PHP was originally an abbreviation ofPersonal Home Page,[12][13] but it now stands for therecursivebackronymPHP: Hypertext Preprocessor.[14]

PHP code is usually processed on aweb server by a PHPinterpreter implemented as amodule, adaemon or aCommon 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 generatedHTML orbinary image data—can form the whole or part of anHTTP response. Variousweb template systems, webcontent management systems, andweb frameworks exist that can be employed to orchestrate or facilitate the generation of that response. Additionally, PHP can be used for programming tasks outside the web context, though non-web uses are rare. PHP code can also be directly executed from thecommand line.

The standard PHP interpreter, powered by theZend Engine, isfree software released under thePHP License. PHP has been widely ported and can be deployed on most web servers on a variety ofoperating systems and platforms.[15]

History

[edit]

The PHP language at first evolved without a writtenformal specification or standard, with the originalimplementation acting as thede facto standard that other implementations aimed to follow.

Rasmus Lerdorf, creator of PHP; andAndi Gutmans andZeev Suraski, creators of theZend Engine

Early history (1993 to 1997)

[edit]

PHP development began in 1993[9] whenRasmus Lerdorf wrote severalCommon Gateway Interface (CGI) programs inC,[16][17] which he used to maintain hispersonal homepage. He extended them to work withHTML forms and to communicate withdatabases, and called this implementation "Personal Home Page/Forms Interpreter" or PHP/FI.

An example of the early PHPsyntax:[18]

<!--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 acceleratebug reporting and improve the code, Lerdorf initially announced the release of PHP/FI as "Personal Home Page Tools (PHP Tools) version 1.0" on theUsenet discussion groupcomp.infosystems.www.authoring.cgi on 8 June 1995.[1][19] This release included basic functionality such asPerl-like variables, form handling, and the ability to embedHTML. By this point, thesyntax had changed to resemble that ofPerl, but was simpler, more limited, and less consistent.[12][11]

Early PHP was never intended to be a newprogramming 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."[20] A development team began to form and, after months of work andbeta testing, officially released PHP/FI 2 in November 1997.[21]

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.[22] In some cases, the function names were chosen to match the lower-level libraries which PHP was "wrapping",[23] while in some very early versions of PHP the length of the function names was used internally as ahash function, so names were chosen to improve the distribution ofhash values.[24]

PHP 3 and 4 (1998 to 2004)

[edit]
This is an example of PHP code for theWordPresscontent management system.

Zeev Suraski andAndi Gutmans rewrote theparser in 1997 and formed the base of PHP 3, changing the language's name to therecursive acronymPHP: Hypertext Preprocessor.[11][25] Afterwards, public testing of PHP 3 began, and the official launch came in June 1998. Suraski and Gutmans then started a newrewrite of PHP's core, producing theZend Engine in 1999.[26] They also foundedZend Technologies inRamat Gan,Israel.[11]

On 22 May 2000, PHP 4.0, 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.[27][28]

Early PHP 5 (2004 to 2006)

[edit]

On 1 July 2004, PHP 5.0 was released, powered by the new Zend Engine 2.0.[11] PHP 5.0 included significant changes to the language, most notably an overhauled approach toobject-oriented programming, as well asiterators andexceptions.[29]

PHP 5.1 and PHP 5.2 were released the following years, adding smaller improvements and new features, such as the PHP Data Objects (PDO) extension (which defines a lightweight and consistent interface for accessing databases) In 2008, PHP 5.x became the only stable version under development.

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

PHP 6 and Unicode

[edit]

PHP's native string functions worked only on raw bytes, making use withmultibyte character encodings difficult.[33][34] In 2005, a project headed by Andrei Zmievski was initiated to bring nativeUnicode support throughout PHP, by embedding theInternational Components for Unicode (ICU) library, and representing text strings asUTF-16 internally.[35] 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.[36]

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.[37] As a result, a PHP 5.3 release was created in 2009, and 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.[38] Initial hopes were that a new plan would be formed for Unicode integration, but by 2014 none had been adopted.[citation needed]

Later PHP 5 (2009 to 2014)

[edit]

Because it contained features originally intended to be part of 6.0, PHP 5.3 was a significant release, adding support fornamespaces,closures,late static binding,[39][40] and many fixes and improvements to standard functions.

With the Unicode branch officially abandoned, a new release process was adopted in 2011, planning a yearly release cycle, and a clear distinction between "feature releases" (x.y.z to x.y+1.z) and "major releases" (x.y.z to x+1.0.0).[41] Remaining features which had been planned for the 6.0 release were included in PHP 5.4, released in March 2012, such astrait support and a new "short array syntax". This was followed by more incremental changes in PHP 5.5 (June 2013) and 5.6 (August 2014).

For PHP versions 5.3 and 5.4, the only availableMicrosoft Windows binary distributions were 32-bitIA-32 builds,[42][43] requiring Windows 32-bit compatibility mode while usingInternet Information Services (IIS) on a 64-bit Windows platform. PHP version 5.5 made the 64-bitx86-64 builds available for Microsoft Windows.[44]

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

PHP 7.x (2015 to 2019)

[edit]

During 2014 and 2015, a new major PHP version was developed, PHP 7.0. The numbering of this version involved some debate among internal developers.[46] 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.[47] After a vote, the name PHP 7 was chosen.[48]

The foundation of PHP 7.0 was a PHPbranch that was originally dubbedPHP next generation (phpng). It was written by Dmitry Stogov, Xinchen Hui and Nikita Popov,[49] and aimed to optimize PHP performance by refactoring the Zend Engine while retaining near-complete language compatibility.[50] 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 ajust-in-time (JIT) compiler.[51] Because of the significant changes, the reworked Zend Engine was calledZend Engine 3, succeeding Zend Engine 2 used in PHP 5.x.[52]

PHP 7.0 also included changes which were not backwards compatible, as allowed for "major versions" under theversioning scheme agreed in 2011.[41] Changes to the core language included a more consistent handling of variable dereferencing,[53] a more predictable behavior of theforeach statement,[54] and platform consistency ofbitwise shifts[55] and floating-point to integer conversion.[55][56] Several unmaintained or deprecatedserver application programming interfaces (SAPIs) and extensions were removed from the PHP core, most notably the legacymysql extension.[57] Other legacy features were also removed, such as ASP-style delimiters<% and%> and<script language="php"> ... </script>.[58]

PHP 7.0 marked the beginning of an expansion in PHP's type system. In PHP 5.x, only function parameters could have type declarations, but this was extended to function return types in 7.0.,[59] and object properties in 7.4[60] The types expressible also expanded, withscalar types (integer, float, string, and boolean) in 7.0;[61]iterable type,[62] nullable types,[63] andvoid return type.[64] all in 7.1; and theobject type in 7.2[65]

Other changes in this period aimed to add expressiveness to the language, such as the?? (null coalesce)[66]and<=> "spaceship"three-way comparison[67] operators in 7.0; new syntax for array derefencing[68] and catching multiple exception types[69] in PHP 7.1; more flexibleHeredoc and Nowdoc syntax[70] in 7.3; and the null-coalescing assignment operator[71] in 7.4.

PHP 8.x (2020 onwards)

[edit]

PHP 8.0 was released on 26 November 2020, as a major version withbreaking changes from previous versions.[72][73]

One of the most high-profile changes was the addition of aJIT compiler, which can provide substantial performance improvements for some use cases.[74][75] Substantial improvements were expected more for mathematical-type operations than for common web-development use cases.[76] Additionally, the performance advantage of the JIT compiler provides the potential to move some code from C to PHP.[77]

A significant addition to the language in 8.0 isattributes, which allow metadata to be added to program elements such as classes, methods, and parameters.[72] Later versions added built-in attributes which change the behaviour of the language, such as the#[\SensitiveParameter] attribute in PHP 8.2,[78]#[\Override] in PHP 8.3,[79]#[\Deprecated] in PHP 8.4,[80] and the#[\NoDiscard] and#[\DelayedTargetValidation] attributes in PHP 8.5.[81][82][83]

A significant extension to the language's type system is the addition of composite types: union types in PHP 8.0 (e.g.int|string meaning "either integer or string),[84] intersection types in PHP 8.1 (e.g.Traversable&Countable meaning the value must implement both theTraversable andCountable interfaces),[85] anddisjunctive normal form (DNF) types in PHP 8.2 (unions of intersections, such asarray|(Traversable&Countable)).[86] Additional special type keywords have been added, such asmixed andstatic in PHP 8.0,[72]never (abottom type indicating that a function never returns) in PHP 8.1,[87] andnull,false, andtrue as stand-alone types in PHP 8.2.[88][89]

The addition of a rich type system is part of a general trend towards a stricter language, and PHP 8.0 included breaking changes to the handling of string to number comparisons,[90] numeric strings,[91] and incompatible method signatures.[92] Later versions have introduced deprecation notices for behaviour which is planned as a breaking change in a future major version, such as passingnull to non-nullable internal function parameters[93] and referring to properties which have not been declared on the class.[94]

Release history

[edit]
VersionRelease dateSupported until[95]Notes
Unsupported: 1.08 June 1995Officially called "Personal Home Page Tools (PHP Tools)". This is the first use of the name "PHP".[11]
Unsupported: 2.01 November 1997Officially called "PHP/FI 2.0". The first release that could be characterised as PHP, being a standalone language with many features that have endured to the present day.
Unsupported: 3.06 June 199820 October 2000[95]Development moves from one person to multiple developers. Zeev Suraski and Andi Gutmans rewrote the base for this version.[11]
Unsupported: 4.022 May 2000[96]23 June 2001[95]Added a more advanced two-stage parse/execute tag-parsing system called theZend Engine.[97]
Unsupported: 4.110 December 2001[98]12 March 2002[95]Introduced "superglobals" ($_GET,$_POST,$_SESSION, etc.)[97]
Unsupported: 4.222 April 2002[99]6 September 2002[95]Disabledregister_globals by default. Data received over the network is not inserted directly into theglobal namespace anymore, closing possible security holes in applications.[97]
Unsupported: 4.327 December 2002[100]31 March 2005[95]Introduced thecommand-line interface (CLI), to supplement the CGI.[97][101]
Unsupported: 4.411 July 2005[102]7 August 2008[95]Fixed a memory corruption bug, which required breaking binary compatibility with extensions compiled against PHP version 4.3.x.[103]
Unsupported: 5.013 July 2004[104]5 September 2005[95]Zend Engine II with a new object model.[105]
Unsupported: 5.124 November 2005[106]24 August 2006[95]Performance improvements with the introduction of compiler variables in a re-engineered PHP Engine.[105] Added PHP Data Objects (PDO) as a consistent interface for accessing databases.[107]
Unsupported: 5.22 November 2006[108]6 January 2011[95]Enabled the filter extension by default. NativeJSON support.[105]
Unsupported: 5.330 June 2009[109]14 August 2014[95]Namespace support;late static bindings, jump label (limitedgoto),anonymous functions,closures, PHP archives (phar),garbage collection for circular references, improvedWindows support, sqlite3, mysqlnd as a replacement for libmysql as the underlying library for the extensions that work withMySQL, fileinfo as a replacement for mime_magic for betterMIME support, the Internationalization extension, and deprecation of the ereg extension.
Unsupported: 5.41 March 2012[110]3 September 2015[95]Trait support, short array syntax support. Removed items:register_globals,safe_mode,allow_call_time_pass_reference,session_register(),session_unregister() andsession_is_registered(). Built-in web server.[111] Improvements to features and performance, reduced memory requirements.
Unsupported: 5.520 June 2013[112]10 July 2016[113]Support forgenerators,finally blocks for exceptions handling, OpCache (based on Zend Optimizer+) bundled in official distribution.[114]
Unsupported: 5.628 August 2014[115]31 December 2018[113]Constant scalar expressions,variadic functions, argument unpacking, new exponentiation operator, extensions of theuse statement for functions and constants, newphpdbg debugger as a SAPI module, and other smaller improvements.[116]
6.xNot releasedN/aAbandoned version of PHP that planned to include native Unicode support.[117][118]
Unsupported: 7.03 December 2015[119]10 January 2019[41]Zend Engine 3 (performance improvements[51] and 64-bit integer support on Windows[120]), uniform variable syntax,[53]AST-based compilation process,[121] addedClosure::call(),[122] bitwise shift consistency across platforms,[123]?? (null coalesce) operator,[66]Unicode code pointescape syntax,[124] return type declarations,[59] scalar type (integer, float, string and boolean) declarations,[61]<=> "spaceship"three-way comparison operator,[67]generator delegation,[125]anonymous classes,[126] simpler and more consistently availableCSPRNG API,[127] replacement of many remaining internal PHP "errors" with the more modernexceptions,[128] and shorthand syntax for importing multiple items from a namespace.[129]
Unsupported: 7.11 December 20161 December 2019[113]iterable type,[62] nullable types,[63]void return type,[64] class constantvisibility modifiers,[130] short list syntax,[68] multi-catch[69]
Unsupported: 7.230 November 201730 November 2020[113]object parameter and return type declaration,[65] libsodium extension,[131] abstract method overriding,[132] parameter type widening[133]
Unsupported: 7.36 December 2018[134]6 December 2021FlexibleHeredoc and Nowdoc syntax,[70] support for reference assignment and array deconstruction withlist(),[135] PCRE2 support,[136]hrtime function[137]
Unsupported: 7.428 November 2019[138]28 November 2022Typed properties,[60] preloading,[139] null-coalescing assignment operator,[71] improveopenssl_random_pseudo_bytes,[140] weak references,[141]foreign function interface (FFI),[142] always available hash extension,[143] password hash registry,[144] multibyte string splitting,[145] reflection for references,[146] unbundle ext/wddx,[147] new custom object serialization mechanism[148]
Unsupported: 8.026 November 2020[149]26 November 2023Just-In-Time (JIT) compilation,[150] arrays starting with a negative index,[151] stricter/saner language semantics (validation for abstract trait methods),[152] saner string to number comparisons,[90] saner numeric strings,[91]TypeError on invalid arithmetic/bitwise operators,[153] reclassification of various engine errors,[154] consistent type errors for internal functions,[155] fatal error for incompatible method signatures,[92] locale-independent float to string conversion,[156] variable syntax tweaks,[157] attributes,[158][159][160][161] named arguments,[162] match expression,[163] constructor property promotion,[164] union types,[84]mixed type,[165] static return type,[166] nullsafe operator,[167] non-capturing catches,[168]throw expression,[169] JSON extension is always available.[170]
Unsupported: 8.125 November 2021[171]31 December 2025Explicit octal integer literal notation,[172] enumerations,[173] read-only properties,[174] first-class callable syntax,[175]new in initializers,[176] pure intersection types,[85]never return type,[87]final class constraints,[177] fibers[178]
Supported: 8.28 December 2022[179]31 December 2026Readonly classes,[180]null,false, andtrue as stand-alone types,[88][89] locale-independent case conversion,[181] disjunctive normal form types,[86] constants in traits[182]
Supported: 8.323 November 2023[183]31 December 2027Typed class constants,[184] dynamic class constant fetch,[185]#[\Override] attribute,[79] deep-cloning of read-only properties,[186] newjson_validate function,[187] randomizer additions,[188] the command-line linter supports multiple files
Supported: 8.421 November 2024[189]31 December 2028Property hooks, asymmetric visibility, an updatedDOM API, performance improvements, bug fixes, and general cleanup.
Latest version: 8.520 November 2025[190]31 December 2029Pipe operator|>[191]
Legend:
Unsupported
Supported
Latest version
Preview version
Future version

Beginning on 28 June 2011, the PHP Development Team implemented a timeline for the release of new versions of PHP.[41] 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. A 2024 RFC extended the length of the security fix only period to two years, fixed all end of life dates to 31 December, and removed the exception that allowed for "small and self-contained" features to be introduced in patch versions.[192]

Prevalence of outdated versions

[edit]

W3Techs reports that as of November 2025[update] (about three years since PHP 7 was discontinued and 23 months after the PHP 8.3 release), unsupported versions such as PHP 7 are still used by well over half of PHP websites, which are outdated and known to be insecure.[193][194] Those included the 9.7% of PHP websites using the even more outdated (discontinued for 7 years) and insecure PHP 5, released over two decades ago.

Mascot

[edit]
The elePHPant, PHP's mascot

The mascot of the PHP project is theelePHPant, a blueelephant with the PHP logo on its side, designed by Vincent Pontier[195] in 1998.[196] "The (PHP) letters were forming the shape of an elephant if viewed in a sideways angle."[197]

The elePHPant is sometimes differently coloured when inplush toy form.[198] Many variations of this physical mascot have been made over the years. Only the elePHPants based on the original design by Vincent Pontier are considered official by the community.[199] These are collectable and some of them are extremely rare.[200]

Syntax

[edit]
Main article:PHP syntax and semantics
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 anHTML document:

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

The PHP interpreter only executes PHP code within itsdelimiters. Anything outside of its delimiters is not processed by PHP, although the non-PHP text can still be subject tocontrol 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 can be disabled in the local PHP configuration and it is therefore discouraged.[201][202] Conversely, there is no recommendation against the echo short tag<?=.[203] Prior to PHP 5.4.0, this short syntax forecho only works with theshort_open_tag configuration setting enabled, while for PHP 5.4.0 and later it is always available.[204][205][201] The purpose of all these delimiters is to separate PHP code from non-PHP content, such asJavaScript code or HTML markup.[206]

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

Variables areprefixed with adollar symbol, and atype 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 orcallback functions. However, before PHP 7, type declarations could not be used with scalar types such as integers or strings.[61]

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 initializedecho$name.' is '.$height."m tall\n";// concatenating variables and stringsecho"$name is$age years old.";// interpolating variables to string?>

Unlike function and class names, variable names are case-sensitive. Both double-quoted ("") andheredoc strings provide the ability to interpolate a variable's value into the string.[208] PHP treatsnewlines aswhitespace in the manner of afree-form language, and statements are terminated by a semicolon.[209] PHP has three types ofcomment syntax:/* */ marks block and inline comments;// or# are used for one-line comments.[210] Theecho 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 andwhile loops and function returns are similar in syntax to languages such as C, C++, C#, Java and Perl.[citation needed]

Data types

[edit]

PHP isloosely typed. It stores integers in a platform-dependent range, either as a 32, 64 or 128-bitsignedinteger equivalent to theC-language long type. Unsigned integers are converted to signed values in certain situations, which is different behaviour to many other programming languages.[211] Integer variables can be assigned using decimal (positive and negative),octal,hexadecimal, andbinary notations.[212]

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

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

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.[213]

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 inhashes with both keys and values, and the two can be intermingled.[213] PHP also supportsstrings, which can be used with single quotes, double quotes, nowdoc orheredoc syntax.[214]

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

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 onlinePHP documentation.[216] However, the built-in library has a wide variety of naming conventions and associated inconsistencies, as described underhistory above.

Custom functions may be defined by the developer:

functionmyAge(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 2026, the output of the above sample program is "I am currently 31 years old."

In lieu offunction pointers, functions in PHP can be referenced by a string containing their name. In this manner, normal PHP functions can be used, for example, ascallbacks or withinfunction tables.[217] User-defined functions may be created at any time without beingprototyped.[216][217] Functions may be defined inside code blocks, permitting arun-time decision as to whether or not a function should be defined. There is afunction_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 classconstructor functions called with the PHP operatornew, in which case parentheses are optional.[citation needed]

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

functiongetAdder($x){returnfn($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 aparameter to other functions, etc.[221]

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.[61] 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.[59] For example, thegetAdder function from the earlier example could be annotated with types like so in PHP 7:

functiongetAdder(int$x):Closure{returnfn(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 isint, PHP would allow not only integers, but also convertible numeric strings, floats or Booleans to be passed to that function, and would convert them.[61] However, PHP 7 has a "strict typing" mode which, when used, disallows such conversions for function calls and returns within a file.[61]

PHP objects

[edit]

Basicobject-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.[222] In previous versions of PHP, objects were handled likevalue types.[222] 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 byhandle, and not by value.[223]

PHP 5 introduced private and protectedmember variables and methods, along withabstract classes,final classes,abstract methods, andfinal methods. It also introduced a standard way of declaringconstructors anddestructors, similar to that of other object-oriented languages such asC++, and a standardexception handling model. Furthermore, PHP 5 addedinterfaces 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 witharray syntax and objects implementingIterator orIteratorAggregate can be used with theforeachlanguage construct. There is novirtual table feature in the engine, sostatic variables are bound with a name instead of a reference at compile time.[224]

If the developer creates a copy of an object using the reserved wordclone, 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-valuereplica of the source object and only override properties that need to be changed.[225]

Thevisibility of PHP properties and methods is defined using thekeywordspublic,private, andprotected. The default is public, if onlyvar is used;var is a synonym forpublic. Items declaredpublic can be accessed everywhere.protected limits access toinherited classes (and to the class that defines the item).private limits visibility only to the class that defines the item.[226] Objects of the same type have access to each other's private and protected members even though they are not the same instance.[227]

Example

[edit]

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

<?phpabstractclassUser{protectedstring$name;publicfunction__construct(string$name){// make first letter uppercase and the rest lowercase$this->name=ucfirst(strtolower($name));}publicfunctiongreet():string{return"Hello, my name is ".$this->name;}abstractpublicfunctionjob():string;}classStudentextendsUser{publicfunction__construct(string$name,privatestring$course){parent::__construct($name);}publicfunctionjob():string{return"I learn ".$this->course;}}classTeacherextendsUser{publicfunction__construct(string$name,privatearray$teachingCourses){parent::__construct($name);}publicfunctionjob():string{return"I teach ".implode(", ",$this->teachingCourses);}}$students=[newStudent("Alice","Computer Science"),newStudent("Bob","Computer Science"),newStudent("Charlie","Business Studies"),];$teachers=[newTeacher("Dan",["Computer Science","Information Security"]),newTeacher("Erin",["Computer Science","3D Graphics Programming"]),newTeacher("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 ScienceHello, my name is Bob, I learn Computer ScienceHello, my name is Charlie, I learn Business StudiesTeachers:Hello, my name is Dan, I teach Computer Science, Information SecurityHello, my name is Erin, I teach Computer Science, 3D Graphics ProgrammingHello, 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 theZend Engine. To disambiguate it from other implementations, it is sometimes unofficially called "Zend PHP". The Zend Enginecompiles PHPsource code on-the-fly into an internal format that it can execute, thus it works as aninterpreter.[228][229] 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.[230]

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 anopcode cache, which works bycaching the compiled form of a PHP script (opcodes) inshared memory to avoid the overhead ofparsing andcompiling the code every time the script runs. An opcode cache,Zend Opcache, is built into PHP since version 5.5.[231] Another example of a widely used opcode cache is theAlternative PHP Cache (APC), which is available as aPECL extension.[232]

While Zend PHP is still the most popular implementation, several other implementations have been developed. Some of these arecompilers or supportJIT 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 anintermediate language), which is then translated into x86-64 machine code dynamically at runtime by ajust-in-time (JIT) compiler, resulting in up to 6× performance improvements.[233] However, since version 7.2 Zend has outperformed HHVM,[234] and HHVM 3.24 is the last version to officially support PHP.[235]
    • HipHop – developed at Facebook and available as open source, it transforms the PHP scripts intoC++ 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 thecreate_function() andeval() constructs.[236]
  • Parrot – a virtual machine designed to run dynamic languages efficiently; the cross-translator Pipp transforms the PHP source code into theParrot intermediate representation, which is then translated into the Parrot's bytecode and executed by the virtual machine.
  • PeachPie – a second-generation compiler to .NETCommon Intermediate Language (CIL) bytecode, built on theRoslyn platform; successor of Phalanger, sharing several architectural components
  • Phalanger – compiles PHP into .Net Common Intermediate Language bytecode; predecessor of PeachPie
  • Quercus – compiles PHP intoJava bytecode

Licensing

[edit]
Main article:PHP License

PHP isfree software released under thePHP License, which stipulates that:[237]

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 theGNU General Public License (GPL), while the Zend License is incompatible due to an advertising clause similar to that of the originalBSD license.[238]

Development and community

[edit]
See also:List of PHP software and tools

PHP includes variousfree and open-source libraries in its source distribution or uses them in resulting PHP binary builds. PHP is fundamentally anInternet-aware system with built-in modules for accessingFile Transfer Protocol (FTP) servers and many database servers, includingPostgreSQL,MySQL,Microsoft SQL Server andSQLite (which is an embedded database),LDAP servers, and others. Numerous functions are familiar to C programmers, such as those in thestdio family, are available in standard PHP builds.[239]

PHP allows developers to writeextensions inC 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 theWindows API, process management onUnix-likeoperating systems, multibyte strings (Unicode),cURL, and several popularcompression formats. Other PHP features made available through extensions include integration withInternet Relay Chat (IRC), dynamic generation of images andAdobe Flash content,PHP Data Objects (PDO) as an abstraction layer used for accessing databases,[240][241][242][243][244][245][246] and evenspeech synthesis. Some of the language's core functions, such as those dealing with strings and arrays, are also implemented as extensions.[247] ThePHP Extension Community Library (PECL) project is a repository for extensions to the PHP language.[248] Most of the community focuses on web development, and PHP running server side (though also serving JavaScript for the client side), and some exceptional uses are for e.g. standalonegraphical applications (withPHP-GTK unmaintained now for over a decade),[249] and evendrone control.[250]

Some other projects, such asZephir, 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.[251]

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, andAndrei Zmievski.[252]

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

The PHP Foundation

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

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

YearCommitsReviewsRFCs
2022[256]6832838
2023[257]78470217
2024[258]1976127813

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.[259]

The response to the foundation has been largely positive, with commentators praising its role in ensuring the continued development of PHP and helping to stabilise the language's community and popularity.[260][261]

Germany'sSovereign Tech Fund provided more than 200,000 Euros to support the PHP Foundation.[262]

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 calledserver application programming interface (SAPI), which is supported by many web servers includingApache HTTP Server,Microsoft IIS,Caddy (through FrankenPHP) andiPlanet Web Server. Some other web servers, such as OmniHTTPd, support theInternet Server Application Programming Interface (ISAPI), which isMicrosoft's web server module interface. If PHP has no module support for a web server, it can always be used as aCommon Gateway Interface (CGI) orFastCGI processor; in that case, the web server is configured to use PHP's CGI executable to process all requests to PHP files.[263]

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

When using PHP for command-line scripting, a PHPcommand-line interface (CLI) executable is needed. PHP supports a CLIserver application programming interface (SAPI) since PHP 4.3.0.[266] The main focus of this SAPI is developingshell 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.[267]

PHP has a direct module interface called SAPI for different web servers;[268] in case of PHP 5 and Apache 2.0 on Windows, it is provided in form of aDLL file calledphp5apache2.dll,[269] 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.[268][270]

PHP can also be used for writing desktopgraphical user interface (GUI) applications, by using the"PHP Desktop".GitHub. or discontinuedPHP-GTK extension. PHP-GTK is not included in the official PHP distribution,[263] 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.[271]

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

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

Use

[edit]
A broad overview of the LAMP software bundle, displayed here together withSquid

PHP is a general-purpose scripting language that is especially suited toserver-sideweb development, in which case PHP generally runs on aweb server. Any PHP code in a requested file isexecuted by the PHP runtime, usually to createdynamic web page content or dynamic images used on websites or elsewhere.[280] It can also be used forcommand-line scripting andclient-sidegraphical user interface (GUI) applications. PHP can be deployed on most web servers, manyoperating systems andplatforms, and can be used with manyrelational database management systems (RDBMS). Mostweb 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.[15]

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

Originally designed to create dynamicweb pages, PHP now focuses mainly onserver-side scripting,[281] and it is similar to other server-side scripting languages that provide dynamic content from a web server to aclient, such asPython,Microsoft'sASP.NET,Sun Microsystems'JavaServer Pages,[282] andmod_perl. PHP has also attracted the development of manysoftware frameworks that provide building blocks and a design structure to promoterapid application development (RAD).[citation needed] Some of these includePRADO,CakePHP,Symfony,CodeIgniter,Laravel,Yii Framework,Phalcon andLaminas, offering features similar to otherweb frameworks.

TheLAMP architecture has become popular in the web industry as a way of deploying web applications.[283] PHP is commonly used as theP in this bundle alongsideLinux,Apache andMySQL, although theP may also refer toPython,Perl, or some mix of the three. Similar packages,WAMP andMAMP, are also available forWindows andmacOS, 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 inC orC++.[284][285][286][287][288][289][290][non-primary source needed] Besides extending the language itself in form of additionallibraries, extensions are providing a way for improving execution speed where it is critical and there is room for improvements by using a truecompiled language.[291][292] PHP also offers well-defined ways for embedding itself into other software projects. That way PHP can be easily used as an internalscripting language for another project, also providing tight interfacing with the project's specific internaldata structures.[293]

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

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

Popularity and usage statistics

[edit]

PHP is used forWeb content management systems includingMediaWiki,[297]WordPress,[298]Joomla,[299]Drupal,[300]Moodle,[301]eZ Publish,eZ Platform, andSilverStripe.[302]

As of January 2013[update], PHP was used in more than 240 millionwebsites (39% of those sampled) and was installed on 2.1 millionweb servers.[303]

As of 20 December 2025[update] (one month after PHP 8.5's release), PHP is used as the server-side programming language on 72.5% of websites where the language could be determined; PHP 8 is the most used version of the language with 54.7% of websites using PHP being on that version, while 35.9% use PHP 7, 9.3% use PHP 5 and 0.1% use PHP 4.[194]

PHP 8
54.7%
PHP 7
35.9%
PHP 5
9.3%
PHP 4
0.1%






Usage share of PHP versions on 20 December 2025:
one month after PHP 8.5's release[194][304][305][306][307]
  1. PHP 8.5: 0.1% of PHP 8 (0.05%)
  2. PHP 8.4: 6.7% of PHP 8 (3.66%)
  3. PHP 8.3: 20.9% of PHP 8 (11.4%)
  4. PHP 8.2: 38.6% of PHP 8 (21.1%)
  5. PHP 8.1: 23.2% of PHP 8 (12.7%)
  6. PHP 8.0: 10.6% of PHP 8 (5.80%)
  7. PHP 7.4: 73.8% of PHP 7 (26.5%)
  8. PHP 7.3: 10.7% of PHP 7 (3.84%)
  9. PHP 7.2: 8.30% of PHP 7 (2.98%)
  10. PHP 7.1: 3.40% of PHP 7 (1.22%)
  11. PHP 7.0: 3.70% of PHP 7 (1.33%)
  12. PHP 5.6: 54.9% of PHP 5 (5.11%)
  13. PHP 5.5: 15.0% of PHP 5 (1.40%)
  14. PHP 5.4: 15.0% of PHP 5 (1.40%)
  15. PHP 5.3: 8.00% of PHP 5 (0.74%)
  16. PHP 5.2: 6.70% of PHP 5 (0.62%)
  17. PHP 5.1: 0.40% of PHP 5 (0.04%)
  18. PHP 5.0: less than 0.1% of PHP 5 (0.00%)
  19. PHP 4.4: 73.9% of PHP 4 (0.07%)
  20. PHP 4.3: 22.0% of PHP 4 (0.02%)
  21. PHP 4.2: 2.70% of PHP 4 (0.00%)
  22. PHP 4.1: 0.70% of PHP 4 (0.00%)
  23. PHP 4.0: 0.10% of PHP 4 (0.00%)

Security

[edit]

In 2019, 11% of all vulnerabilities listed by theNational Vulnerability Database were linked to PHP;[308] 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).[309] Recognizing that programmers make mistakes, some languages includetaint checking to automatically detect the lack ofinput validation which induces many issues. Such a feature has been proposed for PHP in the past, but either been rejected or the proposal abandoned.[310][311][312]

Third-party projects such asSuhosin[313] and Snuffleupagus[314] aim to remove or change dangerous parts of the language.

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 andregister_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 theengine 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 (viaenable_dl configuration directive)[321] in ashared web hosting environment can lead to security issues.[322][323]

Impliedtype 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' istrue, because strings that are parsable as numbers are converted to numbers; in this case, the first compared value is treated asscientific notation having the value (0×101234), which is zero. Errors like this resulted in authentication vulnerabilities inSimple Machines Forum,[324]Typo3[325] andphpBB[326] whenMD5password hashes were compared. The recommended way is to usehash_equals() (fortiming attack safety),strcmp or the identity operator (===), as'0e1234' === '0' results infalse.[citation needed]

In a 2013 analysis of over 170,000website defacements, published byZone-H, the most frequently (53%) used technique was the exploitation offile inclusion vulnerability, mostly related to insecure usage of the PHP language constructsinclude,require, andallow_url_fopen.[327][328]

Cryptographic security

[edit]

PHP includesrand()[329] andmt_rand()[330] functions which use apseudorandom number generator, and are not cryptographically secure. As of version 8.1, therandom_int() function is included, which uses a cryptographically secure source of randomness provided by the system.[331]

There are two attacks that can be performed over PHP entropy sources: "seed attack" and "state recovery attack".[citation needed] As of 2012, a $250GPU can perform up to 230MD5 calculations per second, while a $750 GPU can perform four times as many calculations at the same time.[332] In combination with a "birthday attack" this can lead to serious security vulnerabilities.[citation needed]

Long-term support

[edit]

The PHP development team provides official bug fixes for two years following release of each minor version followed by another two years where only security fixes are released.[192] After this, the release is consideredend of life and no longer officially supported.

Extended long-term support beyond this is available from commercial providers, such asZend and others[333][334]

See also

[edit]

References

[edit]
  1. ^most of Zend engine underZend Engine License) for PHP 4 and later versions (only; dual-licensedGNU General Public License version 2 or any later version and PHP License for PHP versions 3.0 or earlier.[5]
  1. ^abLerdorf, Rasmus (June 8, 1995)."Announce: Personal Home Page Tools (PHP Tools)". Retrieved7 June 2011.
  2. ^abLerdorf, Rasmus (26 April 2007)."PHP on Hormones – history of PHP presentation by Rasmus Lerdorf given at the MySQL Conference in Santa Clara, California". The Conversations Network. Archived fromthe original on 29 July 2013.
  3. ^"Version 8.5.2". 15 January 2026. Retrieved17 January 2026.
  4. ^"PHP: Function arguments – Manual".
  5. ^"PHP: Release Archives (museum)".
  6. ^"PHP: Preface – Manual".
  7. ^Stogov, Dmitry [@dstogov] (4 December 2015)."It's not a secret that some #PHP7 optimization ideas came from HHVM, LuaJIT and V8. Thank you @HipHopVM @SaraMG. #php7thankyou" (Tweet) – viaTwitter.
  8. ^"PHP: Hypertext Preprocessor". Retrieved12 February 2020.
  9. ^abKrill, Paul (18 November 2013)."Believe the hype: PHP founder backs Facebook's HipHop technology".InfoWorld. Retrieved13 October 2022.
  10. ^"Announce: Personal Home Page Tools (PHP Tools)". Retrieved3 November 2022.
  11. ^abcdefghi"History of PHP and related projects". The PHP Group. Retrieved25 February 2008.
  12. ^ab"History of PHP".php.net.
  13. ^Olsson, Mikael (4 September 2013).PHP Quick Scripting Reference. Apress.ISBN 978-1-4302-6284-8.
  14. ^PHP Manual: Preface, PHP.
  15. ^ab"Embedding PHP in HTML". O'Reilly. 2001-05-03. Archived fromthe original on 2008-02-19. Retrieved2008-02-25.
  16. ^Lerdorf, Rasmus (2012-07-20)."I wonder why people keep writing that PHP was ever written in Perl. It never was. #php". Twitter. Retrieved2014-09-04.
  17. ^Lerdorf, Rasmus (2007-04-26)."PHP on Hormones". The Conversations Network. Archived fromthe original(mp3) on 2019-01-06. Retrieved2009-06-22.
  18. ^Lerdorf, Rasmus (2007)."Slide 3".slides for 'PHP on Hormones' talk. The PHP Group. Retrieved2009-06-22.
  19. ^Lerdorf, Rasmus (1995-06-08)."Announce: Personal Home Page Tools (PHP Tools)".Newsgroupcomp.infosystems.www.authoring.cgi. Retrieved2006-09-17.
  20. ^"Rasmus Lerdorf, Senior Technical Yahoo: PHP, Behind the Mic". 2003-11-19. Archived fromthe original on 2013-07-28.
  21. ^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". Retrieved13 Feb 2024.
  22. ^"Problems with PHP". Retrieved20 December 2010.
  23. ^"php.internals: Re: Function name consistency".news.php.net. 2013-12-28. Retrieved2014-02-09.
  24. ^Rasmus Lerdorf (Dec 16, 2013)."Re: Flexible function naming".Newsgroupphp.internals. RetrievedDecember 26, 2013.
  25. ^"PHP – Acronym Meaning Vote".PHP.net. Archived fromthe original on August 15, 2000.
  26. ^"Zend Engine version 2.0: Feature Overview and Design".Zend Technologies Ltd. Archived fromthe original on 2006-07-19. Retrieved2006-09-17.
  27. ^"php.net 2007 news archive". The PHP Group. 2007-07-13. Retrieved2008-02-22.
  28. ^Kerner, Sean Michael (2008-02-01)."PHP 4 is Dead—Long Live PHP 5". InternetNews. Archived fromthe original on 2018-08-06. Retrieved2018-12-16.
  29. ^Trachtenberg, Adam (2004-07-15)."Why PHP 5 Rocks!". O'Reilly. Archived fromthe original on 2016-03-31. Retrieved2008-02-22.
  30. ^"GoPHP5". Archived fromthe original on 2011-07-17.
  31. ^"PHP projects join forces to Go PHP 5"(PDF).GoPHP5 Press Release. Archived fromthe original(PDF) on 2019-08-04. Retrieved2008-02-23.
  32. ^"GoPHP5". GoPHP5. Archived fromthe original on 2011-04-27. Retrieved2008-02-22.
  33. ^"Types: Strings (PHP Manual)".PHP.net. Retrieved2013-09-22.
  34. ^"Details of the String Type (PHP Manual)".PHP.net. Retrieved2021-09-22.
  35. ^Andrei Zmievski (2005-08-10)."PHP Unicode support design document" (Mailing list). Retrieved2014-02-09.
  36. ^"PHP 5.5 or 6.0". Retrieved2014-02-09.
  37. ^Andrei Zmievski (2011-04-22)."The Good, the Bad, and the Ugly: What Happened to Unicode and PHP 6". Retrieved2014-02-09.
  38. ^Rasmus Lerdorf (2010-03-11)."PHP 6" (Mailing list). Retrieved2014-02-07.
  39. ^"Late Static Binding in PHP". Digital Sandwich. 2006-02-23. Retrieved2008-03-25.
  40. ^"Static Keyword". The PHP Group. Retrieved2008-03-25.
  41. ^abcd"PHP: Release Process". 2011-06-20. Retrieved2013-10-06.
  42. ^"PHP for Windows: Binaries and sources releases (5.3)".php.net. Retrieved2013-10-29.
  43. ^"PHP for Windows: Binaries and sources releases (5.4)".php.net. Retrieved2013-10-29.
  44. ^"PHP for Windows: Binaries and sources releases (5.5)".php.net. Retrieved2013-10-29.
  45. ^"PHP: Supported Versions".
  46. ^"The Neverending Muppet Debate of PHP 6 v PHP 7". Archived fromthe original on 2015-11-19. Retrieved2015-11-19.
  47. ^"RFC: Name of Next Release of PHP".php.net. 2014-07-07. Retrieved2014-07-15.
  48. ^"Re: [PHP-DEV] [VOTE] [RFC] Name of Next Release of PHP (again)". 2014-07-30. Retrieved2014-07-30.
  49. ^"phpng: Refactored PHP Engine with Big Performance Improvement".news.php.net.
  50. ^"PHP: rfc:phpng".php.net. Retrieved16 December 2014.
  51. ^ab"PHP: phpng".php.net. Retrieved2014-07-15.
  52. ^"Merge branch 'ZendEngine3'".github.com. 2014-12-05. Retrieved2014-12-05.
  53. ^ab"PHP RFC: Uniform Variable Syntax".php.net. 2014-05-31. Retrieved2014-07-30.
  54. ^"PHP RFC: Fix "foreach" behavior".php.net. Retrieved2015-05-21.
  55. ^ab"PHP RFC: Integer Semantics".php.net. Retrieved2015-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
  56. ^"PHP RFC: ZPP Failure on Overflow".php.net. Retrieved2015-05-21.
  57. ^"PHP RFC: Removal of dead or not yet PHP7 ported SAPIs and extensions".php.net. Retrieved2015-05-21.
  58. ^"PHP RFC: Remove alternative PHP tags".php.net. Retrieved2015-05-21.
  59. ^abc"RFC: Return Types".php.net. 2015-01-27. Retrieved2015-01-28.
  60. ^ab"PHP: rfc:typed_properties_v2".wiki.php.net. Retrieved2019-04-04.
  61. ^abcdef"RFC: Scalar Type Declarations".php.net. 2015-03-16. Retrieved2015-03-17.
  62. ^ab"PHP: rfc:iterable".php.net. 2016-06-10. Retrieved2023-06-30.
  63. ^ab"PHP: rfc:nullable_types".php.net. 2014-04-10. Retrieved2023-06-30.
  64. ^ab"PHP: rfc:void_return_type".php.net. 2015-11-09. Retrieved2015-11-14.
  65. ^ab"PHP: rfc:object-typehint".wiki.php.net.
  66. ^ab"PHP: rfc:isset_ternary".php.net. Retrieved16 December 2014.
  67. ^ab"Combined Comparison (Spaceship) Operator".php.net. Retrieved2015-05-21.
  68. ^ab"PHP: rfc:short_list_syntax".php.net. 2016-04-07. Retrieved2023-06-30.
  69. ^ab"PHP: rfc:multiple-catch".php.net. 2016-03-06. Retrieved2023-06-30.
  70. ^ab"PHP: rfc:flexible_heredoc_nowdoc_syntaxes".wiki.php.net.
  71. ^ab"PHP: rfc:null_coalesce_equal_operator".wiki.php.net. Retrieved2019-04-04.
  72. ^abcBrent."What's new in PHP 8".Stitcher. Retrieved22 September 2020.
  73. ^"PHP 8 Released".PHP. Retrieved27 November 2020.
  74. ^Brent."PHP 8: JIT performance in real-life web applications".Stitcher.io. Retrieved4 October 2020.
  75. ^Rethams, Derick."PHP 8: A Quick Look at JIT".
  76. ^Popov, Nikita (13 July 2020).""What's new in PHP 8.0?" Nikita Popov". PHP fwdays.Archived from the original on 2021-12-11. Retrieved4 October 2020.
  77. ^Daniele, Carlo (25 May 2020)."What's New in PHP 8 (Features, Improvements, and the JIT Compiler)".Kinsta. Retrieved24 December 2020.
  78. ^Karunaratne, Ayesh."PHP 8.2: Sensitive Parameter value redaction support".PHP.Watch. Retrieved2025-10-12.
  79. ^ab"PHP: rfc:marking_overriden_methods".wiki.php.net. Retrieved2023-12-17.
  80. ^"PHP: rfc:deprecated_attribute".wiki.php.net. Retrieved2025-10-12.
  81. ^"PHP: rfc:marking_return_value_as_important".wiki.php.net. Retrieved2025-10-12.
  82. ^"PHP: rfc:delayedtargetvalidation_attribute".wiki.php.net. Retrieved2025-11-14.
  83. ^Scherzer, Daniel (2025-08-20)."Blog: #[\DelayedTargetValidation] Attribute Explained".scherzer.dev. Retrieved2025-11-14.
  84. ^ab"PHP RFC: Union Types 2.0".wiki.php.net. Retrieved14 August 2020.
  85. ^ab"PHP: rfc:pure-intersection-types".wiki.php.net. Retrieved2021-11-26.
  86. ^ab"PHP: rfc:dnf_types".wiki.php.net. Retrieved2023-02-07.
  87. ^ab"PHP: rfc:noreturn_type".wiki.php.net. Retrieved2021-11-26.
  88. ^ab"PHP: rfc:null-false-standalone-types".wiki.php.net. Retrieved2022-06-16.
  89. ^ab"PHP: rfc:true-type".wiki.php.net. Retrieved2022-06-16.
  90. ^ab"PHP RFC: Saner string to number comparisons".wiki.php.net. Retrieved14 August 2020.
  91. ^ab"PHP RFC: Saner numeric strings".wiki.php.net. Retrieved14 August 2020.
  92. ^ab"PHP: rfc:lsp_errors".wiki.php.net. Retrieved2019-05-26.
  93. ^Karunaratne, Ayesh."PHP 8.1: Passing 'null' to non-nullable internal function parameters is deprecated".PHP.Watch. Retrieved2025-10-12.
  94. ^Karunaratne, Ayesh."PHP 8.2: Dynamic Properties are deprecated".PHP.Watch. Retrieved2025-10-12.
  95. ^abcdefghijkl"Unsupported Branches".php.net. Retrieved2019-07-31.
  96. ^"PHP 4.0.0 Released". Retrieved25 October 2020.
  97. ^abcd"PHP: PHP 4 ChangeLog". The PHP Group. 2008-01-03. Retrieved2008-02-22.
  98. ^"PHP 4.1.0 Release Announcement". Retrieved25 October 2020.
  99. ^"PHP 4.2.0 Release Announcement". Retrieved25 October 2020.
  100. ^"PHP 4.3.0 Release Announcement". Retrieved25 October 2020.
  101. ^"Using PHP from the command line".PHP Manual. The PHP Group. Retrieved2009-09-11.
  102. ^"PHP 4.4.0 Release Announcement". Retrieved25 October 2020.
  103. ^"PHP 4.4.0 Release Announcement".PHP Manual. The PHP Group. Retrieved2013-11-24.
  104. ^"PHP 5.0.0 Released!". Retrieved25 October 2020.
  105. ^abc"PHP: PHP 5 ChangeLog". The PHP Group. 2007-11-08. Retrieved2008-02-22.
  106. ^"PHP 5.1.0 Release Announcement". Retrieved25 October 2020.
  107. ^"PHP manual: PDO". The PHP Group. 2011-11-15. Retrieved2011-11-15.
  108. ^"PHP 5.2.0 Release Announcement". Retrieved25 October 2020.
  109. ^"PHP 5.3.0 Release Announcement". Retrieved25 October 2020.
  110. ^"PHP 5.4.0 Release Announcement". Retrieved25 October 2020.
  111. ^"Built-in web server". RetrievedMarch 26, 2012.
  112. ^"PHP 5.5.0 Release Announcement". Retrieved25 October 2020.
  113. ^abcd"Supported Versions".php.net. Retrieved2017-12-13.
  114. ^"PHP 5.5.0 changes".php.net. Archived fromthe original on 2015-03-01. Retrieved2015-03-03.
  115. ^"PHP 5.6.0 Release Announcement". Retrieved25 October 2020.
  116. ^"Migrating from PHP 5.5.x to PHP 5.6.x".php.net. Retrieved2014-03-24.
  117. ^Corbet, Jonathan (24 March 2010)."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.
  118. ^Krill, Paul (2014-10-31)."PHP 7 moves full speed ahead".InfoWorld.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.
  119. ^"News Archive – 2018: PHP 7.2.9 Released".php.net. 2018-08-16. Retrieved2018-08-16.
  120. ^"PHP: rfc:size_t_and_int64_next".php.net. Retrieved16 December 2014.
  121. ^"PHP: rfc:abstract_syntax_tree".php.net. Retrieved16 December 2014.
  122. ^"PHP: rfc:closure_apply".php.net. Retrieved16 December 2014.
  123. ^"PHP: rfc:integer_semantics".php.net. Retrieved16 December 2014.
  124. ^"RFC: Unicode Codepoint Escape Syntax". 2014-11-24. Retrieved2014-12-19.
  125. ^"PHP RFC: Generator Delegation".php.net. Retrieved2015-05-21.
  126. ^"PHP RFC: Anonymous Classes".php.net. Retrieved2015-05-21.
  127. ^"PHP RFC: Easy User-land CSPRNG".php.net. Retrieved2015-05-21.
  128. ^"PHP RFC: Exceptions in the engine (for PHP 7)".php.net. Retrieved2015-05-21.
  129. ^"PHP RFC: Group Use Declarations".php.net. Retrieved2015-05-21.
  130. ^"PHP: rfc:class_constant_visibility".php.net. 2015-10-27. Retrieved2015-12-08.
  131. ^"PHP: rfc:libsodium".wiki.php.net.
  132. ^"PHP: rfc:allow-abstract-function-override".wiki.php.net.
  133. ^"PHP: rfc:parameter-no-type-variance".wiki.php.net.
  134. ^"PHP: todo:php73".wiki.php.net.
  135. ^"PHP: rfc:list_reference_assignment".wiki.php.net.
  136. ^"PHP: rfc:pcre2-migration".wiki.php.net.
  137. ^"PHP: hrtime – Manual".php.net.
  138. ^"PHP 7.4.0 Released!".php.net. Retrieved2019-11-28.
  139. ^"PHP: rfc:preload".wiki.php.net. Retrieved2019-04-04.
  140. ^"PHP: rfc:improve-openssl-random-pseudo-bytes".wiki.php.net. Retrieved2019-04-04.
  141. ^"PHP: rfc:weakrefs".wiki.php.net. Retrieved2019-04-05.
  142. ^"PHP: rfc:ffi".wiki.php.net. Retrieved2019-04-05.
  143. ^"PHP: rfc:permanent_hash_ext".wiki.php.net. Retrieved2019-04-05.
  144. ^"PHP: rfc:password_registry".wiki.php.net. Retrieved2019-04-05.
  145. ^"PHP: rfc:mb_str_split".wiki.php.net. Retrieved2019-04-05.
  146. ^"PHP: rfc:reference_reflection".wiki.php.net. Retrieved2019-04-05.
  147. ^"PHP: rfc:deprecate-and-remove-ext-wddx".wiki.php.net. Retrieved2019-04-05.
  148. ^"PHP: rfc:custom_object_serialization".wiki.php.net. Retrieved2019-04-05.
  149. ^"PHP: Supported Versions".php.net. Retrieved2023-11-26.
  150. ^"PHP: rfc:jit".wiki.php.net. Retrieved2019-04-05.
  151. ^"PHP: rfc:negative_array_index".wiki.php.net. Retrieved2019-04-05.
  152. ^"PHP RFC: Validation for abstract trait methods".wiki.php.net. Retrieved14 August 2020.
  153. ^"PHP RFC: Stricter type checks for arithmetic/bitwise operators".wiki.php.net. Retrieved14 August 2020.
  154. ^"PHP RFC: Reclassifying engine warnings".wiki.php.net. Retrieved14 August 2020.
  155. ^"PHP: rfc:consistent_type_errors".wiki.php.net. Retrieved2019-04-05.
  156. ^"PHP RFC: Locale-independent float to string cast".wiki.php.net. Retrieved14 August 2020.
  157. ^"PHP RFC: Variable Syntax Tweaks".wiki.php.net. Retrieved14 August 2020.
  158. ^"PHP RFC: Attributes V2".wiki.php.net. Retrieved14 August 2020.
  159. ^"PHP RFC: Attribute Amendments".wiki.php.net. Retrieved14 August 2020.
  160. ^"PHP RFC: Shorter Attribute Syntax".wiki.php.net. Retrieved2020-06-20.
  161. ^"PHP RFC: Shorter Attribute Syntax Change".wiki.php.net. Retrieved14 August 2020.
  162. ^"PHP RFC: Named Arguments".wiki.php.net. Retrieved14 August 2020.
  163. ^"PHP RFC: Match expression v2".wiki.php.net. Retrieved14 August 2020.
  164. ^"PHP RFC: Constructor Property Promotion".wiki.php.net. Retrieved14 August 2020.
  165. ^"PHP RFC: Mixed Type v2".wiki.php.net. Retrieved14 August 2020.
  166. ^"PHP RFC: Static return type".wiki.php.net. Retrieved14 August 2020.
  167. ^"PHP RFC: Nullsafe operator".wiki.php.net. Retrieved14 August 2020.
  168. ^"PHP RFC: non-capturing catches".wiki.php.net. Retrieved14 August 2020.
  169. ^"PHP RFC: throw expression".wiki.php.net. Retrieved14 August 2020.
  170. ^Andre, Tyson."PHP RFC: Always available JSON extension".PHP. Retrieved25 October 2020.
  171. ^"PHP: todo:php81".wiki.php.net. Retrieved2022-06-16.
  172. ^"PHP RFC: Explicit octal integer literal notation".wiki.php.net. Retrieved2020-11-25.
  173. ^"PHP RFC: Enumerations".wiki.php.net. Retrieved2021-03-25.
  174. ^"PHP: rfc:readonly_properties_v2".wiki.php.net. Retrieved2021-11-26.
  175. ^"PHP: rfc:first_class_callable_syntax".wiki.php.net. Retrieved2021-11-26.
  176. ^"PHP: rfc:new_in_initializers".wiki.php.net. Retrieved2021-11-26.
  177. ^"PHP: rfc:final_class_const".wiki.php.net. Retrieved2021-11-26.
  178. ^"PHP: rfc:fibers".wiki.php.net. Retrieved2021-11-26.
  179. ^"PHP: todo:php82".wiki.php.net. Retrieved2022-06-16.
  180. ^"PHP: rfc:readonly_classes".wiki.php.net. Retrieved2022-06-16.
  181. ^"PHP: rfc:strtolower-ascii".wiki.php.net. Retrieved2022-06-16.
  182. ^"PHP: rfc:constants_in_traits".wiki.php.net. Retrieved2023-02-07.
  183. ^"PHP 8.3.0 Released!".php.net. 23 November 2023. Retrieved24 November 2023.
  184. ^"PHP: rfc:typed_class_constants".wiki.php.net. Retrieved2023-12-17.
  185. ^"PHP: rfc:dynamic_class_constant_fetch".wiki.php.net. Retrieved2023-12-17.
  186. ^"PHP: rfc:readonly_amendments".wiki.php.net. Retrieved2023-12-17.
  187. ^"PHP: rfc:json_validate".wiki.php.net. Retrieved2023-12-17.
  188. ^"PHP: rfc:randomizer_additions".wiki.php.net. Retrieved2023-12-17.
  189. ^"PHP: todo: php84".php.net. 26 March 2024. Retrieved26 March 2024.
  190. ^"PHP: todo: php85".php.net. 16 April 2024. Retrieved16 April 2025.
  191. ^"PHP: rfc:pipe-operator-v3".wiki.php.net. Retrieved2025-08-06.
  192. ^ab"PHP: RFC:release_cycle_update".
  193. ^"PHP: Unsupported Branches".
  194. ^abc"Usage statistics of PHP for websites".W3Techs – World Wide Web Technology Surveys. W3Techs. Retrieved20 December 2025.
  195. ^"PHP: ElePHPant". 4 Oct 2014. Retrieved4 Oct 2014.
  196. ^"Redirecting…".wwphp-fb.github.io.
  197. ^"The PHP Mascot's Birth – Creator Of The elePHPant Vincent Pontier Reveals The True Story!".7php.com. 2014-01-06.
  198. ^"ElePHPant".PHP.earth. Retrieved2024-02-13.
  199. ^"PHP: ElePHPant".www.php.net.
  200. ^"A Field Guide to Elephpants".afieldguidetoelephpants.net.
  201. ^ab"PHP: rfc:shortags".php.net. 2008-04-03. Retrieved2014-05-08.
  202. ^"PHP: Basic syntax". The PHP Group. Retrieved2008-02-22.
  203. ^"Basic Coding Standard". PHP Framework Interoperability Group. Retrieved2016-01-03.
  204. ^"echo – Manual".php.net. Retrieved2014-02-17.
  205. ^"Description of core php.ini directives – Manual".php.net. 2002-03-17. Retrieved2014-02-17.
  206. ^"Your first PHP-enabled page". The PHP Group. Retrieved2008-02-25.
  207. ^Bray, Tim; et al. (26 November 2008)."Processing Instructions".Extensible Markup Language (XML) 1.0 (Fifth Edition). W3C. Retrieved2009-06-18.
  208. ^"Variables". The PHP Group. Retrieved2008-03-16.
  209. ^"Instruction separation". The PHP Group. Retrieved2008-03-16.
  210. ^"Comments". The PHP Group. Retrieved2008-03-16.
  211. ^"Integers in PHP, running with scissors, and portability". MySQL Performance Blog. March 27, 2007. Retrieved2007-03-28.
  212. ^"Integers".PHP Manual. The PHP Group. Retrieved2025-05-26.
  213. ^abcde"Types". The PHP Group. Retrieved2008-03-16.
  214. ^"Strings". The PHP Group. Retrieved2008-03-21.
  215. ^"SPL – StandardPHPLibrary".PHP.net. March 16, 2009. Retrieved2009-03-16.
  216. ^ab"User-defined functions (PHP manual)".php.net. 2014-07-04. Retrieved2014-07-07.
  217. ^ab"Variable functions (PHP manual)".php.net. 2014-07-04. Retrieved2014-07-07.
  218. ^"create_function() (PHP manual)".php.net. 2022-04-06. Retrieved2022-05-04.
  219. ^"Anonymous functions (PHP manual)".php.net. 2014-07-04. Retrieved2014-07-07.
  220. ^"Arrow Functions (PHP manual)".php.net. Retrieved2021-01-25.
  221. ^Christian Seiler; Dmitry Stogov (2008-07-01)."Request for Comments: Lambda functions and closures".php.net. Retrieved2014-07-07.
  222. ^ab"PHP 5 Object References".mjtsai.com. Retrieved2008-03-16.
  223. ^"Backward Incompatible Changes".php-legacy-docs.zend.com. Retrieved2025-06-20.
  224. ^"Classes and Objects (PHP 5)". The PHP Group. Retrieved2008-03-16.
  225. ^"Object cloning". The PHP Group. Retrieved2008-03-16.
  226. ^"Visibility (PHP Manual)".theserverpages.com. 2005-05-19. Archived fromthe original on 2010-09-24. Retrieved2010-08-26.
  227. ^"PHP: Visibility - Manual".www.php.net. Retrieved2025-11-19.
  228. ^"How do computer languages work?". Archived fromthe original on 2011-07-16. Retrieved2009-11-04.
  229. ^Gilmore, W. Jason (2006-01-23).Beginning PHP and MySQL 5: From Novice to Professional. Apress. p. 43.ISBN 1-59059-552-1.
  230. ^Julien Pauli; Nikita Popov; Anthony Ferrara."PHP Internals Book".PHP Internals Book.Archived from the original on 2025-01-21. Retrieved2025-01-21.
  231. ^"[VOTE] Integrating Zend Optimizer+ into the PHP distribution".news.php.net. Retrieved2013-03-08.
  232. ^"Alternative PHP Cache".PHP.net. Archived fromthe original on 2013-11-15. Retrieved2013-09-21.
  233. ^"We are the 98.5% (and the 16%) « HipHop Virtual Machine".hhvm.com. December 2013. Retrieved2014-02-23.
  234. ^"The Definitive PHP 5.6, 7.0, 7.1, 7.2 & 7.3 Benchmarks (2019)". 2019-01-14. Retrieved2019-04-19.
  235. ^Krill, Paul (2017-09-20)."Forget PHP! Facebook's HHVM engine switches to Hack instead".InfoWorld. Retrieved2019-02-06.
  236. ^"Announcement on GitHub removing HPHPc support".GitHub. Retrieved2013-05-24.
  237. ^"The PHP License, version 3.01". Retrieved2010-05-20.
  238. ^"GPL-Incompatible, Free Software Licenses".Various Licenses and Comments about Them. Free Software Foundation. Retrieved2011-01-03.
  239. ^"PHP: Function and Method listing – Manual". The PHP Group. Retrieved2015-01-14.
  240. ^"Introduction – Manual".php.net. 2013-06-07. Retrieved2013-06-13.
  241. ^Darryl Patterson (5 August 2004)."Simplify Business Logic with PHP DataObjects — O'Reilly Media".ibm.com. Archived fromthe original on 16 December 2014. Retrieved16 December 2014.
  242. ^"IBM — United States". Retrieved16 December 2014.
  243. ^"Five common PHP database problems".ibm.com. 2006-08-01. Retrieved2013-06-13.
  244. ^"IBM Redbooks — Developing PHP Applications for IBM Data Servers".redbooks.ibm.com. Retrieved16 December 2014.
  245. ^"php[architect] Magazine – The Journal for PHP Programmers".www.phparch.com.
  246. ^Krill, Paul (19 October 2005)."PHP catching on at enterprises, vying with Java".InfoWorld. Archived fromthe original on 13 July 2014.
  247. ^"Cross Reference: /PHP_5_4/ext/standard/".php.net. Archived fromthe original on 16 March 2012. Retrieved16 December 2014.
  248. ^"Developing Custom PHP Extensions".devnewz.com. 2002-09-09. Archived fromthe original on 2008-02-18. Retrieved2008-02-25.
  249. ^"Introduction: What can PHP do?".PHP Manual. Archived fromthe original on 16 February 2009. Retrieved5 March 2009.
  250. ^"Helicopter: Port of node-ar-drone which allows user to control a Parrot AR Drone over PHP". JoliCode. 11 January 2019. Retrieved23 February 2019.
  251. ^"Why Zephir?".zephir-lang.com. 2015-10-20. Retrieved2015-12-14.
  252. ^"PHP Credits". Retrieved2018-12-16.
  253. ^"Learn PHP Via PHP Training and PHP Certification".www.zend.com. Retrieved2020-11-16.
  254. ^Walker, James (2021-12-13)."What the New PHP Foundation Means for PHP's Future".How-To Geek. Retrieved2023-11-26.
  255. ^"The New Life of PHP – The PHP Foundation | The PhpStorm Blog".The JetBrains Blog. 22 November 2021. Retrieved2022-06-16.
  256. ^"The PHP Foundation: Impact and Transparency Report 2022".thephp.foundation. Retrieved2023-11-27.
  257. ^Pronskiy, Roman (2024-02-26)."The PHP Foundation: Impact and Transparency Report 2023".The PHP Foundation. Retrieved2024-04-01.
  258. ^Pronskiy, Roman (2025-03-31)."The PHP Foundation: Impact and Transparency Report 2023".The PHP Foundation. Retrieved2025-08-19.
  259. ^Anderson, Tim."PHP Foundation formed to fund core developers".www.theregister.com. Retrieved2023-12-05.
  260. ^"The PHP Foundation: A New Era for PHP".JetBrains Blog. JetBrains. 26 November 2021. Retrieved6 October 2025.
  261. ^Claburn, Thomas (26 November 2021)."PHP Foundation Formed to Support the Open Source Language".The Register. Retrieved6 October 2025.
  262. ^"PHP".Sovereign Tech Fund. Retrieved2024-05-26.
  263. ^ab"General Installation Considerations".php.net. Retrieved2013-09-22.
  264. ^"News Archive: PHP 5.3.3 Released!".php.net. 2010-07-22.
  265. ^"FastCGI Process Manager (FPM)".php.net. Retrieved2013-09-22.
  266. ^"Command line usage: Introduction".php.net. Archived fromthe original on 2021-03-21. Retrieved2013-09-22.
  267. ^"Command line usage: Differences to other SAPIs".php.net. Retrieved2013-09-22.
  268. ^ab"General Installation Considerations".php.net. Retrieved2013-09-22.
  269. ^"PHP: Apache 2.x on Microsoft Windows".php.net. Archived fromthe original on 2013-09-26. Retrieved2013-09-22.
  270. ^"Command line usage: Introduction".php.net. Archived fromthe original on 2021-03-21. Retrieved2013-09-22.
  271. ^"Installing PHP-GTK 2".php.net. Archived fromthe original on 2013-12-12. Retrieved2013-09-22.
  272. ^Vinit Sharma."What is Cloud Computing? | How to Integrate PHP with AWS". Clarion Technologies. Retrieved2025-12-06.{{cite web}}: CS1 maint: url-status (link)
  273. ^"AWS SDK for PHP".aws.amazon.com. Retrieved2014-03-06.
  274. ^"Windows Azure SDK for PHP — Interoperability Bridges and Labs Center".interoperabilitybridges.com. Archived from the original on 2014-03-20. Retrieved2014-03-06.
  275. ^"Runtime configuration: Table of contents".php.net. Retrieved2013-09-22.
  276. ^"php.ini directives: List of php.ini directives".php.net. Retrieved2013-09-22.
  277. ^"Runtime configuration: The configuration file". PHP.net. Retrieved2013-09-22.
  278. ^"php.ini directives: List of php.ini sections". PHP.net. Retrieved2013-09-22.
  279. ^"Runtime configuration: Where a configuration setting may be set". PHP.net. Retrieved2013-09-22.
  280. ^"PHP Manual Image Processing and GD;". php.net. Retrieved2011-04-09.
  281. ^"PHP Server-Side Scripting Language".Indiana University. 2007-04-04. Archived fromthe original on 2016-01-21. Retrieved2008-02-25.
  282. ^"JavaServer Pages Technology — JavaServer Pages Comparing Methods for Server-Side Dynamic Content White Paper". Sun Microsystems. Retrieved2008-02-25.
  283. ^"Five simple ways to tune your LAMP application".IBM. 2011-01-25.
  284. ^"PHP at the core: Extension structure".PHP.net. Archived fromthe original on 2013-09-26. Retrieved2013-09-22.
  285. ^"PHP at the core: The "counter" Extension – A Continuing Example".PHP.net. Archived fromthe original on 2013-09-26. Retrieved2013-09-22.
  286. ^"Extension Writing Part I: Introduction to PHP and Zend".Zend Technologies. 2005-03-01. Archived fromthe original on 2013-09-24. Retrieved2013-09-22.
  287. ^"Extension Writing Part II: Parameters, Arrays, and ZVALs".Zend Technologies. 2005-06-06. Archived fromthe original on 2013-09-26. Retrieved2013-09-22.
  288. ^"Extension Writing Part II: Parameters, Arrays, and ZVALs (continued)".Zend Technologies. 2005-06-06. Archived fromthe original on 2013-09-26. Retrieved2013-09-22.
  289. ^"Extension Writing Part III: Resources".Zend Technologies. 2006-05-12. Archived fromthe original on 2013-09-26. Retrieved2013-09-22.
  290. ^"Wrapping C++ Classes in a PHP Extension".Zend Technologies. 2009-04-22. Archived fromthe original on 2013-09-20. Retrieved2013-09-22.
  291. ^"Extending PHP with C++?".Stack Overflow. Retrieved2013-09-22.
  292. ^"How can I use C++ code to interact with PHP?".Stack Overflow. Retrieved2013-09-22.
  293. ^Golemon, Sara (2006).Extending and Embedding PHP. Sams.ISBN 978-0-672-32704-9.
  294. ^"Request #46919: Multithreading".PHP.net. Retrieved2013-09-22.
  295. ^"pthreads: Introduction (PHP Manual)".PHP.net. Retrieved2013-09-22.
  296. ^"PECL :: Package :: pthreads".pecl.php.net. Retrieved2014-02-09.
  297. ^"Manual:Installation requirements#PHP". MediaWiki. 2010-01-25. Retrieved2010-02-26.PHP is the programming language in which MediaWiki is written [...]
  298. ^"About WordPress". Retrieved2010-02-26.WordPress was [...] built on PHP
  299. ^Kempkens, Alex."Joomla! — Content Management System to build websites & apps".
  300. ^"PHP and Drupal". Drupal.org. 16 September 2007. Archived fromthe original on 2010-02-08. Retrieved2010-06-13.
  301. ^"About". Moodle.org. Archived fromthe original on 2010-01-11. Retrieved2009-12-20.
  302. ^"Server requirements of SilverStripe". Archived fromthe original on 28 November 2014. Retrieved13 October 2014.SilverStripe requires PHP 5.3.2+
  303. ^Ide, Andy (2013-01-31)."PHP just grows & grows". Retrieved2013-04-01.
  304. ^"Usage Statistics and Market Share of PHP Version 4 for Websites, December 2025".w3techs.com.
  305. ^"Usage Statistics and Market Share of PHP Version 5 for Websites, December 2025".w3techs.com.
  306. ^"Usage Statistics and Market Share of PHP Version 7 for Websites, December 2025".w3techs.com.
  307. ^"Usage Statistics and Market Share of PHP Version 8 for Websites, December 2025".w3techs.com.
  308. ^"National Vulnerability Database (NVD) Search Vulnerabilities Statistics". Retrieved2019-11-22.
  309. ^"PHP-related vulnerabilities on the National Vulnerability Database". 2012-07-05. Archived fromthe original on 2009-06-28. Retrieved2013-04-01.
  310. ^"Developer Meeting Notes, Nov. 2005".
  311. ^"Taint mode decision, November 2007". Archived fromthe original on 2009-02-26.
  312. ^"PHP: rfc:taint".wiki.php.net.
  313. ^"Hardened-PHP Project". 2008-08-15. Archived fromthe original on 2019-02-24. Retrieved2019-08-22.
  314. ^"Snuffleupagus Documentation".
  315. ^"Security: Using Register Globals".PHP Manual. PHP.net. Archived fromthe original on 2013-09-27. Retrieved2013-09-22.
  316. ^"Magic Quotes".PHP Manual. PHP.net. Archived fromthe original on 2014-02-08. Retrieved2014-01-17.
  317. ^"'engine' configuration directive".PHP: Runtime Configuration. PHP.net. Retrieved2014-02-13.
  318. ^"PHP Security Exploit With GIF Images". 2007-06-22. Archived fromthe original on 2013-09-27. Retrieved2013-09-22.
  319. ^"PHP security exploit with GIF images". PHP Classes blog. 2007-06-20. Retrieved2013-09-22.
  320. ^"Passing Malicious PHP Through getimagesize()". 2007-06-04. Archived fromthe original on 2013-09-21. Retrieved2013-09-22.
  321. ^"'enable_dl' configuration directive".PHP: Runtime Configuration. PHP.net. Retrieved2014-02-13.
  322. ^"PHP function reference: dl()". PHP.net. Retrieved2013-09-22.
  323. ^"My host won't fix their Trojan". WebHosting Talk. Retrieved2013-09-22.
  324. ^Raz0r (25 January 2013)."Simple Machines Forum <= 2.0.3 Admin Password Reset".Raz0R.name — Web Application Security.{{cite news}}: CS1 maint: numeric names: authors list (link)
  325. ^Nibble Security."TYPO3-SA-2010-020, TYPO3-SA-2010-022 EXPLAINED".
  326. ^"Криптостойкость и небезопасное сравнение".ahack.ru (in Russian). Archived from the original on 4 July 2017.
  327. ^Krawczyk, Pawel (2013)."Most common attacks on web applications". IPSec.pl. Archived fromthe original on 2015-04-15. Retrieved2015-04-15.
  328. ^Krawczyk, Pawel (2013)."So what are the "most critical" application flaws? On new OWASP Top 10". IPSec.pl. Retrieved2015-04-15.
  329. ^"PHP: Rand – Manual".
  330. ^"PHP: Mt_rand - Manual".
  331. ^"PHP: Random_int – Manual".
  332. ^Argyros, George; Kiayias, Aggelos (10 August 2012)."I Forgot Your Password: Randomness Attacks Against PHP Applications".usenix.org.USENIX. Retrieved19 April 2024.
  333. ^"PHP Support for PHP 7.2 – 8.0 | PHP LTS | Zend by Perforce". Retrieved2024-05-23.
  334. ^"Pagely PHP Long Term Support Page".Pagely. Retrieved2024-09-14.

Further reading

[edit]
Listen to this article (35 minutes)
Spoken Wikipedia icon
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)

External links

[edit]
Links to related articles
Protocols
Server APIs
Apache modules
Topics
Browser APIs
Web APIs
WHATWG
W3C
Khronos
Others
Topics
Related topics
General
Software
packages
Community
Organisations
Licenses
Types and
standards
Challenges
Related
topics
PHP at Wikipedia'ssister projects:
International
National
Other
Retrieved from "https://en.wikipedia.org/w/index.php?title=PHP&oldid=1338311251"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2026 Movatter.jp