Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page

PHP is a general-purpose scripting language primarily used for web development. Created by Rasmus Lerdorf in 1993, PHP stands for the recursive acronym PHP: Hypertext Preprocessor. Its code is executed on a web server via an interpreter module generating dynamic content such as HTML. PHP runs on various operating systems, powered by the free Zend Engine, and distributed under the PHP License. Despite lacking a formal specification, PHP remains widely used, though many sites still rely on outdated and insecure versions, according to W3Techs.

Related Image Collections Add Image
We don't have any YouTube videos related to PHP yet.
We don't have any PDF documents related to PHP yet.
We don't have any Books related to PHP yet.

History

Early history

PHP development began in 199313 when Rasmus Lerdorf wrote several Common Gateway Interface (CGI) programs in C,1415 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:16

<!--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.1718 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.1920

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."21 A development team began to form and, after months of work and beta testing, officially released PHP/FI 2 in November 1997.22

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.23 In some cases, the function names were chosen to match the lower-level libraries which PHP was "wrapping",24 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.25

PHP 3 and 4

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.2627 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.28 They also founded Zend Technologies in Ramat Gan, Israel.29

On 22 May 2000, PHP 4, powered by the Zend Engine 1.0, was released.30 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.3132

PHP 5

On 1 July 2004, PHP 5 was released, powered by the new Zend Engine II.33 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.3536

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

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,4142 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 6 and Unicode

PHP received mixed reviews due to lacking native Unicode support at the core language level.4546 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.

PHP 7

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. In particular, it involved the following changes:

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

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

PHP 8

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.7475 New features and notable changes include:

Just-in-time compilation

Just-in-time compilation is supported in PHP 8.76

PHP 8's JIT compiler can provide substantial performance improvements for some use cases,7778 while (then 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.79 Substantial improvements are expected more for mathematical-type operations than for common web-development use cases.80 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.81

Addition of the match expression

Main article: PHP syntax and semantics § Match expression

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

Type changes and additions

PHP 8 introduced union types, a new static return type, and a new mixed type.85

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

throw was changed from being a statement to being an expression.87 This allows exceptions to be thrown in places that were not previously possible.88

Syntax changes and additions

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.89 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.90 This reduces the amount of boilerplate code that must be written.91

Other minor changes include support for use of ::class on objects, which serves as an alternative for the use of get_class();92 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.93

Standard library changes and additions

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

Additional changes

  • Type annotations were also added into PHP's C source code itself to allow internal functions and methods to have "complete type information in reflection."100
  • Inheritance with private methods101
  • Abstract methods in traits improvements102

PHP 8.1

PHP 8.1 was released on November 25, 2021.103 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.104

PHP 8.2

PHP 8.2 was released on December 8, 2022.105 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,106 Sensitive Parameter value redaction, and a ton of other features.

PHP 8.3

PHP 8.3 was released on November 23, 2023. This release introduced readonly array properties, allowing arrays to be declared as immutable after initialization. It also added support for class aliases for built-in PHP classes, new methods for random float generation in the Random extension, and enhanced PHP INI settings with fallback value support. Additionally, the new stream_context_set_options function provides improved API for stream manipulation, among other updates and deprecations.

PHP 8.4

PHP 8.4 was released on November 21, 2024.

Release history

VersionRelease dateSupported until107Notes
Old version, not maintained: 1.08 June 1995Officially called "Personal Home Page Tools (PHP Tools)". This is the first use of the name "PHP".108
Old version, not maintained: 2.01 November 1997Officially called "PHP/FI 2.0". This is the first release that could actually be characterised as PHP, being a standalone language with many features that have endured to the present day.
Old version, not maintained: 3.06 June 199820 October 2000109Development moves from one person to multiple developers. Zeev Suraski and Andi Gutmans rewritten the base for this version.110
Old version, not maintained: 4.022 May 200011123 June 2001112Added more advanced two-stage parse/execute tag-parsing system called the Zend engine.113
Old version, not maintained: 4.110 December 200111412 March 2002115Introduced "superglobals" ($_GET, $_POST, $_SESSION, etc.)116
Old version, not maintained: 4.222 April 20021176 September 2002118Disabled register_globals by default. Data received over the network is not inserted directly into the global namespace anymore, closing possible security holes in applications.119
Old version, not maintained: 4.327 December 200212031 March 2005121Introduced the command-line interface (CLI), to supplement the CGI.122123
Old version, not maintained: 4.411 July 20051247 August 2008125Fixed a memory corruption bug, which required breaking binary compatibility with extensions compiled against PHP version 4.3.x.126
Old version, not maintained: 5.013 July 20041275 September 2005128Zend Engine II with a new object model.129
Old version, not maintained: 5.124 November 200513024 August 2006131Performance improvements with the introduction of compiler variables in re-engineered PHP Engine.132 Added PHP Data Objects (PDO) as a consistent interface for accessing databases.133
Old version, not maintained: 5.22 November 20061346 January 2011135Enabled the filter extension by default. Native JSON support.136
Old version, not maintained: 5.330 June 200913714 August 2014138Namespace support; late static bindings, jump label (limited goto), anonymous functions, closures, PHP archives (phar), garbage collection for circular references, improved Windows support, sqlite3, mysqlnd as a replacement for libmysql as the underlying library for the extensions that work with MySQL, fileinfo as a replacement for mime_magic for better MIME support, the Internationalization extension, and deprecation of ereg extension.
Old version, not maintained: 5.41 March 20121393 September 2015140Trait 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.141 Several improvements to existing features, performance and reduced memory requirements.
Old version, not maintained: 5.520 June 201314210 July 2016143Support for generators, finally blocks for exceptions handling, OpCache (based on Zend Optimizer+) bundled in official distribution.144
Old version, not maintained: 5.628 August 201414531 December 2018146Constant 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.147
6.xNot releasedAbandoned version of PHP that planned to include native Unicode support.148149
Old version, not maintained: 7.03 December 201515010 January 2019151Zend Engine 3 (performance improvements152 and 64-bit integer support on Windows153), uniform variable syntax,154 AST-based compilation process,155 added Closure::call(),156 bitwise shift consistency across platforms,157 ?? (null coalesce) operator,158 Unicode code point escape syntax,159 return type declarations,160 scalar type (integer, float, string and boolean) declarations,161 <=> "spaceship" three-way comparison operator,162 generator delegation,163 anonymous classes,164 simpler and more consistently available CSPRNG API,165 replacement of many remaining internal PHP "errors" with the more modern exceptions,166 and shorthand syntax for importing multiple items from a namespace.167
Old version, not maintained: 7.11 December 20161 December 2019168iterable type,169 nullable types,170 void return type,171 class constant visibility modifiers,172 short list syntax,173 multi-catch174
Old version, not maintained: 7.230 November 201730 November 2020175Object parameter and return type declaration,176 libsodium extension,177 abstract method overriding,178 parameter type widening179
Old version, not maintained: 7.36 December 20181806 December 2021Flexible Heredoc and Nowdoc syntax,181 support for reference assignment and array deconstruction with list(),182 PCRE2 support,183 hrtime function184
Old version, not maintained: 7.428 November 201918528 November 2022Typed properties 2.0,186 preloading,187 null-coalescing assignment operator,188 improve openssl_random_pseudo_bytes,189 weak references,190 foreign function interface (FFI),191 always available hash extension,192 password hash registry,193 multibyte string splitting,194 reflection for references,195 unbundle ext/wddx,196 new custom object serialization mechanism197
Old version, not maintained: 8.026 November 202019826 November 2023Just-In-Time (JIT) compilation,199 arrays starting with a negative index,200 stricter/saner language semantics (validation for abstract trait methods),201 saner string to number comparisons,202 saner numeric strings,203 TypeError on invalid arithmetic/bitwise operators,204 reclassification of various engine errors,205 consistent type errors for internal functions,206 fatal error for incompatible method signatures207), locale-independent float to string conversion,208 variable syntax tweaks,209 attributes,210211212213 named arguments,214 match expression,215 constructor property promotion,216 union types,217 mixed type,218 static return type,219 nullsafe operator,220 non-capturing catches,221 throw expression,222 JSON extension is always available.223
Old version, still maintained: 8.125 November 202122431 December 2025Explicit octal integer literal notation,225 enumerations,226 read-only properties,227 first-class callable syntax,228 new in initializers,229 pure intersection types,230 never return type,231 final class constraints,232 fibers233
Old version, still maintained: 8.28 December 202223431 December 2026Readonly classes,235 null, false, and true as stand-alone types,236237 locale-independent case conversion,238 disjunctive normal form types,239 constants in traits240
Old version, still maintained: 8.323 November 202324131 December 2027Typed class constants,242 dynamic class constant fetch,243 #[\Override] attribute,244 deep-cloning of read-only properties,245 new json_validate function,246 randomizer additions,247 the command-line linter supports multiple files
Latest version: 8.421 November 202424831 December 2028Property hooks, asymmetric visibility, an updated DOM API, performance improvements, bug fixes, and general cleanup.
Legend:Old version, not maintainedOld version, still maintainedLatest versionLatest preview versionFuture version

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

Mascot

The mascot of the PHP project is the elePHPant, a blue elephant with the PHP logo on its side, designed by Vincent Pontier250 in 1998.251 "The (PHP) letters were forming the shape of an elephant if viewed in a sideways angle."252 The elePHPant is sometimes differently coloured when in plush toy form.253

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.254 These are collectable and some of them are extremely rare.255

Syntax

Main article: PHP syntax and semantics

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

<?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.257258 Conversely, there is no recommendation against the echo short tag <?=.259 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.260261262 The purpose of all these delimiters is to separate PHP code from non-PHP content, such as JavaScript code or HTML markup.263 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.264 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.265

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.266 PHP treats newlines as whitespace in the manner of a free-form language, and statements are terminated by a semicolon.267 PHP has three types of comment syntax: /* */ marks block and inline comments; // or # are used for one-line comments.268 The echo statement is one of several facilities PHP provides to output text.

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.

Data types

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.269 Integer variables can be assigned using decimal (positive and negative), octal, hexadecimal, and binary notations.

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

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

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

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

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

Functions

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

Custom functions may be defined by the developer:

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

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

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

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

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

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

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.285 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.286 For example, the getAdder function from the earlier example could be annotated with types like so in PHP 7:

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

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

PHP objects

Basic object-oriented programming functionality was added in PHP 3 and improved in PHP 4.289 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.290 In previous versions of PHP, objects were handled like value types.291 The drawback of this method was that code had to make heavy use of PHP's "reference" variables if it wanted to modify an object it was passed rather than creating a copy of it. In the new approach, objects are referenced by handle, and not by value.

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

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

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

Example

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

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

This program outputs the following:

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

Implementations

The only complete PHP implementation is the original, known simply as PHP. It is the most widely used and is powered by the Zend Engine. To disambiguate it from other implementations, it is sometimes unofficially called "Zend PHP". The Zend Engine compiles PHP source code on-the-fly into an internal format that it can execute, thus it works as an interpreter.295296 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.297

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

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

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

Licensing

Main article: PHP License

PHP is free software released under the PHP License, which stipulates that:304

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

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

Development and community

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

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

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

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

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

The PHP Foundation

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

YearCommitsReviewsRFCs
20223206832838
202332178470217

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

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

Germany's Sovereign Tech Fund provided more than 200,000 Euros to support the PHP Foundation.327

Installation and configuration

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

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

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

PHP has a direct module interface called SAPI for different web servers;333 in case of PHP 5 and Apache 2.0 on Windows, it is provided in form of a DLL file called php5apache2.dll,334 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.

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

PHP can also be used for writing desktop graphical user interface (GUI) applications, by using the "PHP Desktop". GitHub. or discontinued PHP-GTK extension. PHP-GTK is not included in the official PHP distribution,337 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.338

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

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

Use

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

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

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

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

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

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

Popularity and usage statistics

PHP is used for Web content management systems including MediaWiki,364 WordPress,365 Joomla,366 Drupal,367 Moodle,368 eZ Publish, eZ Platform, and SilverStripe.369

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

As of 21 January 2025 (two months after PHP 8.4's release), PHP is used as the server-side programming language on 75.0% of websites where the language could be determined; PHP 7 is the most used version of the language with 47.1% of websites using PHP being on that version, while 40.6% use PHP 8, 12.2% use PHP 5 and 0.1% use PHP 4.371

PHP 840.6%PHP 747.1%PHP 512.9%PHP 40.1%

Security

In 2019, 11% of all vulnerabilities listed by the National Vulnerability Database were linked to PHP;372 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).373 Recognizing that programmers make mistakes, some languages include taint checking to automatically detect the lack of input validation which induces many issues. Such a feature has been proposed for PHP in the past, but either been rejected or the proposal abandoned.374375376

Third-party projects such as Suhosin377 and Snuffleupagus378 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 and register_globals379 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.380

Another example for the potential runtime-settings vulnerability comes from failing to disable PHP execution (for example by using the engine configuration directive)381 for the directory where uploaded files are stored; enabling it can result in the execution of malicious code embedded within the uploaded files.382383384 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.

Also, enabling the dynamic loading of PHP extensions (via enable_dl configuration directive)385 in a shared web hosting environment can lead to security issues.386387

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

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

Cryptographic security

PHP includes rand()393 and mt_rand()394functions which use a pseudorandom number generator, and are not cryptographically secure. As of version 8.1, the random_int() function is included, which uses a cryptographically secure source of randomness provided by the system.395

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

Long-term support

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.397 After this, the release is considered end of life and no longer officially supported.

Extended long-term support beyond this is available from commercial providers, such as Zend and others398399

See also

  • Computer programming portal
  • Free and open-source software portal

Further reading

References

  1. "PHP: Hypertext Preprocessor". www.php.net. Retrieved 2020-02-12. https://www.php.net/

  2. Krill, Paul (2013-11-18). "Believe the hype: PHP founder backs Facebook's HipHop technology". InfoWorld. Retrieved 2022-10-13. https://www.infoworld.com/article/2609877/believe-the-hype--php-founder-backs-facebook-s-hiphop-technology.html

  3. "Announce: Personal Home Page Tools (PHP Tools)". groups.google.com. Retrieved 2022-11-03. https://groups.google.com/g/comp.infosystems.www.authoring.cgi/c/PyJ25gZ6z7A/m/M9FkTUVDfcwJ?pli=1

  4. "History of PHP and related projects". The PHP Group. Retrieved 2008-02-25. https://www.php.net/history

  5. "History of PHP". php.net. https://php.net/manual/en/history.php.php

  6. Olsson, Mikael (2013-09-04). PHP Quick Scripting Reference. Apress. ISBN 978-1-4302-6284-8. 978-1-4302-6284-8

  7. PHP Manual: Preface, www.php.net. https://php.net/manual/en/preface.php

  8. "Introduction: What can PHP do?". PHP Manual. Retrieved 2009-03-05. https://php.net/manual/en/intro-whatcando.php

  9. "Helicopter: Port of node-ar-drone which allows user to control a Parrot AR Drone over PHP". JoliCode. 2019-01-11. Retrieved 2019-02-23. https://github.com/jolicode/php-ar-drone

  10. "Embedding PHP in HTML". O'Reilly. 2001-05-03. Archived from the original on 2008-02-19. Retrieved 2008-02-25. https://web.archive.org/web/20080219180226/http://www.onlamp.com/pub/a/php/2001/05/03/php_foundations.html

  11. "PHP: Unsupported Branches". www.php.net. https://www.php.net/eol.php

  12. "Usage statistics of PHP for websites". W3Techs – World Wide Web Technology Surveys. W3Techs. Retrieved 21 January 2025. https://w3techs.com/technologies/details/pl-php

  13. Krill, Paul (2013-11-18). "Believe the hype: PHP founder backs Facebook's HipHop technology". InfoWorld. Retrieved 2022-10-13. https://www.infoworld.com/article/2609877/believe-the-hype--php-founder-backs-facebook-s-hiphop-technology.html

  14. Lerdorf, Rasmus (2012-07-20). "I wonder why people keep writing that PHP was ever written in Perl. It never was. #php". Twitter. Retrieved 2014-09-04. https://twitter.com/rasmus/status/226405807305138176

  15. Lerdorf, Rasmus (2007-04-26). "PHP on Hormones". The Conversations Network. Archived from the original (mp3) on 2019-01-06. Retrieved 2009-06-22. https://web.archive.org/web/20190106230504/http://web.archive.org/web/20130729204354id_/http://itc.conversationsnetwork.org/shows/detail3298.html

  16. Lerdorf, Rasmus (2007). "Slide 3". slides for 'PHP on Hormones' talk. The PHP Group. Retrieved 2009-06-22. http://talks.php.net/show/mysql07key/3

  17. Lerdorf, Rasmus (June 8, 1995). "Announce: Personal Home Page Tools (PHP Tools)". Retrieved 7 June 2011. https://groups.google.com/group/comp.infosystems.www.authoring.cgi/msg/cc7d43454d64d133?pli=1

  18. Lerdorf, Rasmus (1995-06-08). "Announce: Personal Home Page Tools (PHP Tools)". Newsgroup: comp.infosystems.www.authoring.cgi. Retrieved 2006-09-17. https://groups.google.com/group/comp.infosystems.www.authoring.cgi/msg/cc7d43454d64d133

  19. "History of PHP". php.net. https://php.net/manual/en/history.php.php

  20. "History of PHP and related projects". The PHP Group. Retrieved 2008-02-25. https://www.php.net/history

  21. "Rasmus Lerdorf, Senior Technical Yahoo: PHP, Behind the Mic". 2003-11-19. Archived from the original on 2013-07-28. https://web.archive.org/web/20130728125152/http://itc.conversationsnetwork.org/shows/detail58.html

  22. Alshetwi, A.B.; Rahmat, R. A. A. O.; Borhan, M. N.; Ismael, S.; Ali, A.; Irtema, H. I. M.; Alfakhria, A. Y. (2018). "Web-Based Expert System for Optimizing of Traffic Road in Developing Countries". Retrieved 13 Feb 2024. https://www.researchgate.net/publication/326727672

  23. "Problems with PHP". Retrieved 20 December 2010. http://toykeeper.net/soapbox/php_problems/

  24. "php.internals: Re: Function name consistency". news.php.net. 2013-12-28. Retrieved 2014-02-09. http://news.php.net/php.internals/70950

  25. Rasmus Lerdorf (Dec 16, 2013). "Re: Flexible function naming". Newsgroup: php.internals. Retrieved December 26, 2013. /wiki/Rasmus_Lerdorf

  26. "History of PHP and related projects". The PHP Group. Retrieved 2008-02-25. https://www.php.net/history

  27. "PHP – Acronym Meaning Vote". PHP.net. Archived from the original on August 15, 2000. https://web.archive.org/web/20000815063125/http://il.php.net/vote_listing.php3

  28. "Zend Engine version 2.0: Feature Overview and Design". Zend Technologies Ltd. Archived from the original on 2006-07-19. Retrieved 2006-09-17. https://web.archive.org/web/20060719204721/http://www.zend.com/zend/zend-engine-summary.php

  29. "History of PHP and related projects". The PHP Group. Retrieved 2008-02-25. https://www.php.net/history

  30. "History of PHP and related projects". The PHP Group. Retrieved 2008-02-25. https://www.php.net/history

  31. "php.net 2007 news archive". The PHP Group. 2007-07-13. Retrieved 2008-02-22. https://www.php.net/archive/2007.php

  32. Kerner, Sean Michael (2008-02-01). "PHP 4 is Dead—Long Live PHP 5". InternetNews. Archived from the original on 2018-08-06. Retrieved 2018-12-16. https://web.archive.org/web/20180806115411/http://www.internetnews.com/dev-news/article.php/3725291

  33. "History of PHP and related projects". The PHP Group. Retrieved 2008-02-25. https://www.php.net/history

  34. Trachtenberg, Adam (2004-07-15). "Why PHP 5 Rocks!". O'Reilly. Archived from the original on 2016-03-31. Retrieved 2008-02-22. https://web.archive.org/web/20160331232050/http://www.onlamp.com/pub/a/php/2004/07/15/UpgradePHP5.html

  35. "Late Static Binding in PHP". Digital Sandwich. 2006-02-23. Retrieved 2008-03-25. http://www.digitalsandwich.com/archives/53-Late-Static-Binding-in-PHP.html

  36. "Static Keyword". The PHP Group. Retrieved 2008-03-25. https://www.php.net/language.oop5.static

  37. "GoPHP5". Archived from the original on 2011-07-17. https://web.archive.org/web/20110717133313/http://gophp5.org/projects

  38. "PHP projects join forces to Go PHP 5" (PDF). GoPHP5 Press Release. Archived from the original (PDF) on 2019-08-04. Retrieved 2008-02-23. https://web.archive.org/web/20190804012720/http://gophp5.org/sites/gophp5.org/files/press_release.pdf

  39. "GoPHP5". GoPHP5. Archived from the original on 2011-04-27. Retrieved 2008-02-22. https://web.archive.org/web/20110427101913/http://www.gophp5.org/

  40. "PHP Installation and Configuration". php.net. Retrieved 2013-10-29. https://www.php.net/manual/en/install.php

  41. "PHP for Windows: Binaries and sources releases (5.3)". php.net. Retrieved 2013-10-29. https://windows.php.net/download/#php-5.3

  42. "PHP for Windows: Binaries and sources releases (5.4)". php.net. Retrieved 2013-10-29. https://windows.php.net/download/#php-5.4

  43. "PHP for Windows: Binaries and sources releases (5.5)". php.net. Retrieved 2013-10-29. https://windows.php.net/download/#php-5.5

  44. "PHP: Supported Versions". https://php.net/supported-versions.php

  45. "Types: Strings (PHP Manual)". PHP.net. Retrieved 2013-09-22. https://php.net/manual/en/language.types.string.php

  46. "Details of the String Type (PHP Manual)". PHP.net. Retrieved 2021-09-22. https://www.php.net/manual/en/language.types.string.php#language.types.string.details

  47. Andrei Zmievski (2005-08-10). "PHP Unicode support design document" (Mailing list). Retrieved 2014-02-09. https://marc.info/?l=php-internals&m=112365908921757&w=1

  48. "PHP 5.5 or 6.0". Retrieved 2014-02-09. http://news.php.net/php.internals/17668

  49. Andrei Zmievski (2011-04-22). "The Good, the Bad, and the Ugly: What Happened to Unicode and PHP 6". Retrieved 2014-02-09. https://www.slideshare.net/andreizm/the-good-the-bad-and-the-ugly-what-happened-to-unicode-and-php-6

  50. Rasmus Lerdorf (2010-03-11). "PHP 6" (Mailing list). Retrieved 2014-02-07. http://news.php.net/php.internals/47120

  51. "The Neverending Muppet Debate of PHP 6 v PHP 7". Archived from the original on 2015-11-19. Retrieved 2015-11-19. https://web.archive.org/web/20151119132438/https://philsturgeon.uk/php/2014/07/23/neverending-muppet-debate-of-php-6-v-php-7/

  52. "RFC: Name of Next Release of PHP". php.net. 2014-07-07. Retrieved 2014-07-15. https://wiki.php.net/rfc/php6

  53. "Re: [PHP-DEV] [VOTE] [RFC] Name of Next Release of PHP (again)". 2014-07-30. Retrieved 2014-07-30. https://www.mail-archive.com/[email protected]/msg68598.html

  54. "phpng: Refactored PHP Engine with Big Performance Improvement". news.php.net. http://news.php.net/php.internals/73888

  55. "PHP: rfc:phpng". php.net. Retrieved 16 December 2014. https://wiki.php.net/rfc/phpng

  56. "PHP: phpng". php.net. Retrieved 2014-07-15. https://wiki.php.net/phpng

  57. "Merge branch 'ZendEngine3'". github.com. 2014-12-05. Retrieved 2014-12-05. https://github.com/php/php-src/commit/150dc69d6eee35738f505e925ee664c02060196d

  58. "PHP: Release Process". 2011-06-20. Retrieved 2013-10-06. https://wiki.php.net/rfc/releaseprocess

  59. "PHP RFC: Exceptions in the engine (for PHP 7)". php.net. Retrieved 2015-05-21. https://wiki.php.net/rfc/engine_exceptions_for_php7

  60. "PHP RFC: Uniform Variable Syntax". php.net. 2014-05-31. Retrieved 2014-07-30. https://wiki.php.net/rfc/uniform_variable_syntax

  61. "Online PHP editor | output for udRhX". 3v4l.org. https://3v4l.org/udRhX

  62. "PHP RFC: Fix "foreach" behavior". php.net. Retrieved 2015-05-21. https://wiki.php.net/rfc/php7_foreach

  63. "PHP RFC: Constructor behaviour of internal classes". php.net. Retrieved 2015-05-21. https://wiki.php.net/rfc/internal_constructor_behaviour

  64. "PHP RFC: Removal of dead or not yet PHP7 ported SAPIs and extensions". php.net. Retrieved 2015-05-21. https://wiki.php.net/rfc/removal_of_dead_sapis_and_exts

  65. "PHP RFC: Fix list() behavior inconsistency". php.net. Retrieved 2015-05-21. https://wiki.php.net/rfc/fix_list_behavior_inconsistency

  66. "PHP RFC: Remove alternative PHP tags". php.net. Retrieved 2015-05-21. https://wiki.php.net/rfc/remove_alternative_php_tags

  67. "PHP RFC: Make defining multiple default cases in a switch a syntax error". php.net. Retrieved 2015-05-21. https://wiki.php.net/rfc/switch.default.multiple

  68. "PHP RFC: Remove hex support in numeric strings". php.net. Retrieved 2015-05-21. https://wiki.php.net/rfc/remove_hex_support_in_numeric_strings

  69. "PHP RFC: Integer Semantics". php.net. Retrieved 2015-05-21. Making NaN and Infinity always become zero when cast to integer means more cross-platform consistency, and is also less surprising than what is currently produces https://wiki.php.net/rfc/integer_semantics

  70. "PHP RFC: Integer Semantics". php.net. Retrieved 2015-05-21. Making NaN and Infinity always become zero when cast to integer means more cross-platform consistency, and is also less surprising than what is currently produces https://wiki.php.net/rfc/integer_semantics

  71. "PHP RFC: ZPP Failure on Overflow". php.net. Retrieved 2015-05-21. https://wiki.php.net/rfc/zpp_fail_on_overflow

  72. "RFC: Return Types". php.net. 2015-01-27. Retrieved 2015-01-28. https://wiki.php.net/rfc/return_types

  73. "RFC: Scalar Type Declarations". php.net. 2015-03-16. Retrieved 2015-03-17. https://wiki.php.net/rfc/scalar_type_hints_v5

  74. Brent. "What's new in PHP 8". Stitcher. Retrieved 22 September 2020. https://stitcher.io/blog/new-in-php-8

  75. "PHP 8 Released". PHP. Retrieved 27 November 2020. https://www.php.net/releases/8.0/en.php

  76. "PHP: rfc:jit". wiki.php.net. Retrieved 2019-04-05. https://wiki.php.net/rfc/jit

  77. Brent. "PHP 8: JIT performance in real-life web applications". Stitcher.io. Retrieved 4 October 2020. https://stitcher.io/blog/jit-in-real-life-web-applications

  78. Rethams, Derick. "PHP 8: A Quick Look at JIT". https://derickrethans.nl/a-quick-look-at-jit.html

  79. Popov, Nikita (13 July 2020). ""What's new in PHP 8.0?" Nikita Popov". PHP fwdays. Archived from the original on 2021-12-11. Retrieved 4 October 2020. https://www.youtube.com/watch?v=NbBRXwu1Md8

  80. Popov, Nikita (13 July 2020). ""What's new in PHP 8.0?" Nikita Popov". PHP fwdays. Archived from the original on 2021-12-11. Retrieved 4 October 2020. https://www.youtube.com/watch?v=NbBRXwu1Md8

  81. Daniele, Carlo (25 May 2020). "What's New in PHP 8 (Features, Improvements, and the JIT Compiler)". Kinsta. Retrieved 24 December 2020. https://kinsta.com/blog/php-8/

  82. Redmond, Paul (15 July 2020). "Match Expression is Coming to PHP 8". Laravel News. Retrieved 4 October 2020. https://laravel-news.com/match-expression-php-8

  83. "PHP 8.0: Match Expressions". PHP Watch. Retrieved 4 October 2020. https://php.watch/versions/8.0/match-expression

  84. Barnes, Eric (27 November 2020). "PHP 8 is now Released!". Laravel News. Retrieved 24 December 2020. https://laravel-news.com/php-8

  85. Brent. "What's new in PHP 8". Stitcher. Retrieved 22 September 2020. https://stitcher.io/blog/new-in-php-8

  86. Brent. "What's new in PHP 8". Stitcher. Retrieved 22 September 2020. https://stitcher.io/blog/new-in-php-8

  87. "PHP RFC: throw expression". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/throw_expression

  88. Brent. "What's new in PHP 8". Stitcher. Retrieved 22 September 2020. https://stitcher.io/blog/new-in-php-8

  89. "PHP RFC: Nullsafe operator". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/nullsafe_operator

  90. Brent. "What's new in PHP 8". Stitcher. Retrieved 22 September 2020. https://stitcher.io/blog/new-in-php-8

  91. Roose, Brent. "PHP 8: Constructor property promotion". Retrieved 30 April 2024. https://stitcher.io/blog/constructor-promotion-in-php-8

  92. Brent. "What's new in PHP 8". Stitcher. Retrieved 22 September 2020. https://stitcher.io/blog/new-in-php-8

  93. "PHP 8 Released". PHP. Retrieved 27 November 2020. https://www.php.net/releases/8.0/en.php

  94. "PHP: rfc:weakrefs". wiki.php.net. Retrieved 2019-04-05. https://wiki.php.net/rfc/weakrefs

  95. Brent. "What's new in PHP 8". Stitcher. Retrieved 22 September 2020. https://stitcher.io/blog/new-in-php-8

  96. Brent. "What's new in PHP 8". Stitcher. Retrieved 22 September 2020. https://stitcher.io/blog/new-in-php-8

  97. Merchant, Amit (13 June 2020). "These new string functions are coming in PHP 8". Amit Merchant. Retrieved 4 October 2020. https://www.amitmerchant.com/new-string-functions-php8/

  98. Brent. "What's new in PHP 8". Stitcher. Retrieved 22 September 2020. https://stitcher.io/blog/new-in-php-8

  99. Brent. "What's new in PHP 8". Stitcher. Retrieved 22 September 2020. https://stitcher.io/blog/new-in-php-8

  100. Popov, Nikita. "Call for participation: Annotating internal function argument and return types". Externals. Retrieved 19 November 2020. https://externals.io/message/106522

  101. Brent. "What's new in PHP 8". Stitcher. Retrieved 22 September 2020. https://stitcher.io/blog/new-in-php-8

  102. Brent. "What's new in PHP 8". Stitcher. Retrieved 22 September 2020. https://stitcher.io/blog/new-in-php-8

  103. "PHP 8 ChangeLog". PHP.net. Retrieved 2024-01-05. https://www.php.net/ChangeLog-8.php#8.1.0

  104. "PHP: PHP 8.1.0 Release Announcement". PHP.net. Retrieved 2024-01-05. https://www.php.net/releases/8.1/en.php

  105. "PHP 8 ChangeLog". PHP.net. Retrieved 2024-01-05. https://www.php.net/ChangeLog-8.php#8.2.0

  106. "PHP: PHP 8.2.0 Release Announcement". PHP.net. Retrieved 2024-01-05. https://www.php.net/releases/8.2/en.php

  107. "Unsupported Branches". php.net. Retrieved 2019-07-31. https://php.net/eol.php

  108. "History of PHP and related projects". The PHP Group. Retrieved 2008-02-25. https://www.php.net/history

  109. "Unsupported Branches". php.net. Retrieved 2019-07-31. https://php.net/eol.php

  110. "History of PHP and related projects". The PHP Group. Retrieved 2008-02-25. https://www.php.net/history

  111. "PHP 4.0.0 Released". Retrieved 25 October 2020. https://news-web.php.net/php.announce/22

  112. "Unsupported Branches". php.net. Retrieved 2019-07-31. https://php.net/eol.php

  113. "PHP: PHP 4 ChangeLog". The PHP Group. 2008-01-03. Retrieved 2008-02-22. https://www.php.net/ChangeLog-4.php

  114. "PHP 4.1.0 Release Announcement". Retrieved 25 October 2020. https://www.php.net/releases/4_1_0.php

  115. "Unsupported Branches". php.net. Retrieved 2019-07-31. https://php.net/eol.php

  116. "PHP: PHP 4 ChangeLog". The PHP Group. 2008-01-03. Retrieved 2008-02-22. https://www.php.net/ChangeLog-4.php

  117. "PHP 4.2.0 Release Announcement". Retrieved 25 October 2020. https://www.php.net/releases/4_2_0.php

  118. "Unsupported Branches". php.net. Retrieved 2019-07-31. https://php.net/eol.php

  119. "PHP: PHP 4 ChangeLog". The PHP Group. 2008-01-03. Retrieved 2008-02-22. https://www.php.net/ChangeLog-4.php

  120. "PHP 4.3.0 Release Announcement". Retrieved 25 October 2020. https://www.php.net/releases/4_3_0.php

  121. "Unsupported Branches". php.net. Retrieved 2019-07-31. https://php.net/eol.php

  122. "PHP: PHP 4 ChangeLog". The PHP Group. 2008-01-03. Retrieved 2008-02-22. https://www.php.net/ChangeLog-4.php

  123. "Using PHP from the command line". PHP Manual. The PHP Group. Retrieved 2009-09-11. https://php.net/manual/en/features.commandline.php

  124. "PHP 4.4.0 Release Announcement". Retrieved 25 October 2020. https://www.php.net/releases/4_4_0.php

  125. "Unsupported Branches". php.net. Retrieved 2019-07-31. https://php.net/eol.php

  126. "PHP 4.4.0 Release Announcement". PHP Manual. The PHP Group. Retrieved 2013-11-24. https://php.net/releases/4_4_0.php

  127. "PHP 5.0.0 Released!". Retrieved 25 October 2020. https://news-web.php.net/php.announce/50

  128. "Unsupported Branches". php.net. Retrieved 2019-07-31. https://php.net/eol.php

  129. "PHP: PHP 5 ChangeLog". The PHP Group. 2007-11-08. Retrieved 2008-02-22. https://www.php.net/ChangeLog-5.php

  130. "PHP 5.1.0 Release Announcement". Retrieved 25 October 2020. https://www.php.net/releases/5_1_0.php

  131. "Unsupported Branches". php.net. Retrieved 2019-07-31. https://php.net/eol.php

  132. "PHP: PHP 5 ChangeLog". The PHP Group. 2007-11-08. Retrieved 2008-02-22. https://www.php.net/ChangeLog-5.php

  133. "PHP manual: PDO". The PHP Group. 2011-11-15. Retrieved 2011-11-15. https://php.net/manual/en/intro.pdo.php

  134. "PHP 5.2.0 Release Announcement". Retrieved 25 October 2020. https://www.php.net/releases/5_2_0.php

  135. "Unsupported Branches". php.net. Retrieved 2019-07-31. https://php.net/eol.php

  136. "PHP: PHP 5 ChangeLog". The PHP Group. 2007-11-08. Retrieved 2008-02-22. https://www.php.net/ChangeLog-5.php

  137. "PHP 5.3.0 Release Announcement". Retrieved 25 October 2020. https://www.php.net/releases/5_3_0.php

  138. "Unsupported Branches". php.net. Retrieved 2019-07-31. https://php.net/eol.php

  139. "PHP 5.4.0 Release Announcement". Retrieved 25 October 2020. https://www.php.net/releases/5_4_0.php

  140. "Unsupported Branches". php.net. Retrieved 2019-07-31. https://php.net/eol.php

  141. "Built-in web server". Retrieved March 26, 2012. https://php.net/manual/en/features.commandline.webserver.php

  142. "PHP 5.5.0 Release Announcement". Retrieved 25 October 2020. https://www.php.net/releases/5_5_0.php

  143. "Supported Versions". php.net. Retrieved 2017-12-13. https://php.net/supported-versions.php

  144. "PHP 5.5.0 changes". php.net. Retrieved 2015-03-03. https://php.net/manual/en/migration55.new-features.php

  145. "PHP 5.6.0 Release Announcement". Retrieved 25 October 2020. https://www.php.net/releases/5_6_0.php

  146. "Supported Versions". php.net. Retrieved 2017-12-13. https://php.net/supported-versions.php

  147. "Migrating from PHP 5.5.x to PHP 5.6.x". php.net. Retrieved 2014-03-24. https://www.php.net/manual/en/migration56.new-features.php

  148. "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. https://lwn.net/Articles/379909/

  149. 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. http://www.infoworld.com/article/2841561/php/php-7-moves-full-speed-ahead.html

  150. "News Archive – 2018: PHP 7.2.9 Released". php.net. 2018-08-16. Retrieved 2018-08-16. https://php.net/archive/2018.php#id2018-07-19-2

  151. "PHP: Release Process". 2011-06-20. Retrieved 2013-10-06. https://wiki.php.net/rfc/releaseprocess

  152. "PHP: phpng". php.net. Retrieved 2014-07-15. https://wiki.php.net/phpng

  153. "PHP: rfc:size_t_and_int64_next". php.net. Retrieved 16 December 2014. https://wiki.php.net/rfc/size_t_and_int64_next

  154. "PHP RFC: Uniform Variable Syntax". php.net. 2014-05-31. Retrieved 2014-07-30. https://wiki.php.net/rfc/uniform_variable_syntax

  155. "PHP: rfc:abstract_syntax_tree". php.net. Retrieved 16 December 2014. https://wiki.php.net/rfc/abstract_syntax_tree

  156. "PHP: rfc:closure_apply". php.net. Retrieved 16 December 2014. https://wiki.php.net/rfc/closure_apply

  157. "PHP: rfc:integer_semantics". php.net. Retrieved 16 December 2014. https://wiki.php.net/rfc/integer_semantics

  158. "PHP: rfc:isset_ternary". php.net. Retrieved 16 December 2014. https://wiki.php.net/rfc/isset_ternary

  159. "RFC: Unicode Codepoint Escape Syntax". 2014-11-24. Retrieved 2014-12-19. https://wiki.php.net/rfc/unicode_escape

  160. "RFC: Return Types". php.net. 2015-01-27. Retrieved 2015-01-28. https://wiki.php.net/rfc/return_types

  161. "RFC: Scalar Type Declarations". php.net. 2015-03-16. Retrieved 2015-03-17. https://wiki.php.net/rfc/scalar_type_hints_v5

  162. "Combined Comparison (Spaceship) Operator". php.net. Retrieved 2015-05-21. https://wiki.php.net/rfc/combined-comparison-operator

  163. "PHP RFC: Generator Delegation". php.net. Retrieved 2015-05-21. https://wiki.php.net/rfc/generator-delegation

  164. "PHP RFC: Anonymous Classes". php.net. Retrieved 2015-05-21. https://wiki.php.net/rfc/anonymous_classes

  165. "PHP RFC: Easy User-land CSPRNG". php.net. Retrieved 2015-05-21. https://wiki.php.net/rfc/easy_userland_csprng

  166. "PHP RFC: Exceptions in the engine (for PHP 7)". php.net. Retrieved 2015-05-21. https://wiki.php.net/rfc/engine_exceptions_for_php7

  167. "PHP RFC: Group Use Declarations". php.net. Retrieved 2015-05-21. https://wiki.php.net/rfc/group_use_declarations

  168. "Supported Versions". php.net. Retrieved 2017-12-13. https://php.net/supported-versions.php

  169. "PHP: rfc:iterable". php.net. 2016-06-10. Retrieved 2023-06-30. https://wiki.php.net/rfc/iterable

  170. "PHP: rfc:nullable_types". php.net. 2014-04-10. Retrieved 2023-06-30. https://wiki.php.net/rfc/nullable_types

  171. "PHP: rfc:void_return_type". php.net. 2015-11-09. Retrieved 2015-11-14. http://wiki.php.net/rfc/void_return_type

  172. "PHP: rfc:class_constant_visibility". php.net. 2015-10-27. Retrieved 2015-12-08. https://wiki.php.net/rfc/class_const_visibility

  173. "PHP: rfc:short_list_syntax". php.net. 2016-04-07. Retrieved 2023-06-30. https://wiki.php.net/rfc/short_list_syntax

  174. "PHP: rfc:multiple-catch". php.net. 2016-03-06. Retrieved 2023-06-30. https://wiki.php.net/rfc/multiple-catch

  175. "Supported Versions". php.net. Retrieved 2017-12-13. https://php.net/supported-versions.php

  176. "PHP: rfc:object-typehint". wiki.php.net. https://wiki.php.net/rfc/object-typehint

  177. "PHP: rfc:libsodium". wiki.php.net. https://wiki.php.net/rfc/libsodium

  178. "PHP: rfc:allow-abstract-function-override". wiki.php.net. https://wiki.php.net/rfc/allow-abstract-function-override

  179. "PHP: rfc:parameter-no-type-variance". wiki.php.net. https://wiki.php.net/rfc/parameter-no-type-variance

  180. "PHP: todo:php73". wiki.php.net. https://wiki.php.net/todo/php73

  181. "PHP: rfc:flexible_heredoc_nowdoc_syntaxes". wiki.php.net. https://wiki.php.net/rfc/flexible_heredoc_nowdoc_syntaxes

  182. "PHP: rfc:list_reference_assignment". wiki.php.net. https://wiki.php.net/rfc/list_reference_assignment

  183. "PHP: rfc:pcre2-migration". wiki.php.net. https://wiki.php.net/rfc/pcre2-migration

  184. "PHP: hrtime – Manual". php.net. https://php.net/manual/en/function.hrtime.php

  185. "PHP 7.4.0 Released!". php.net. Retrieved 2019-11-28. https://www.php.net/archive/2019.php#2019-11-28-1

  186. "PHP: rfc:typed_properties_v2". wiki.php.net. Retrieved 2019-04-04. https://wiki.php.net/rfc/typed_properties_v2

  187. "PHP: rfc:preload". wiki.php.net. Retrieved 2019-04-04. https://wiki.php.net/rfc/preload

  188. "PHP: rfc:null_coalesce_equal_operator". wiki.php.net. Retrieved 2019-04-04. https://wiki.php.net/rfc/null_coalesce_equal_operator

  189. "PHP: rfc:improve-openssl-random-pseudo-bytes". wiki.php.net. Retrieved 2019-04-04. https://wiki.php.net/rfc/improve-openssl-random-pseudo-bytes

  190. "PHP: rfc:weakrefs". wiki.php.net. Retrieved 2019-04-05. https://wiki.php.net/rfc/weakrefs

  191. "PHP: rfc:ffi". wiki.php.net. Retrieved 2019-04-05. https://wiki.php.net/rfc/ffi

  192. "PHP: rfc:permanent_hash_ext". wiki.php.net. Retrieved 2019-04-05. https://wiki.php.net/rfc/permanent_hash_ext

  193. "PHP: rfc:password_registry". wiki.php.net. Retrieved 2019-04-05. https://wiki.php.net/rfc/password_registry

  194. "PHP: rfc:mb_str_split". wiki.php.net. Retrieved 2019-04-05. https://wiki.php.net/rfc/mb_str_split

  195. "PHP: rfc:reference_reflection". wiki.php.net. Retrieved 2019-04-05. https://wiki.php.net/rfc/reference_reflection

  196. "PHP: rfc:deprecate-and-remove-ext-wddx". wiki.php.net. Retrieved 2019-04-05. https://wiki.php.net/rfc/deprecate-and-remove-ext-wddx

  197. "PHP: rfc:custom_object_serialization". wiki.php.net. Retrieved 2019-04-05. https://wiki.php.net/rfc/custom_object_serialization

  198. "PHP: Supported Versions". php.net. Retrieved 2023-11-26. https://www.php.net/supported-versions.php

  199. "PHP: rfc:jit". wiki.php.net. Retrieved 2019-04-05. https://wiki.php.net/rfc/jit

  200. "PHP: rfc:negative_array_index". wiki.php.net. Retrieved 2019-04-05. https://wiki.php.net/rfc/negative_array_index

  201. "PHP RFC: Validation for abstract trait methods". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/abstract_trait_method_validation

  202. "PHP RFC: Saner string to number comparisons". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/string_to_number_comparison

  203. "PHP RFC: Saner numeric strings". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/saner-numeric-strings

  204. "PHP RFC: Stricter type checks for arithmetic/bitwise operators". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/arithmetic_operator_type_checks

  205. "PHP RFC: Reclassifying engine warnings". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/engine_warnings

  206. "PHP: rfc:consistent_type_errors". wiki.php.net. Retrieved 2019-04-05. https://wiki.php.net/rfc/consistent_type_errors

  207. "PHP: rfc:lsp_errors". wiki.php.net. Retrieved 2019-05-26. https://wiki.php.net/rfc/lsp_errors

  208. "PHP RFC: Locale-independent float to string cast". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/locale_independent_float_to_string

  209. "PHP RFC: Variable Syntax Tweaks". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/variable_syntax_tweaks

  210. "PHP RFC: Attributes V2". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/attributes_v2

  211. "PHP RFC: Attribute Amendments". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/attribute_amendments

  212. "PHP RFC: Shorter Attribute Syntax". wiki.php.net. Retrieved 2020-06-20. https://wiki.php.net/rfc/shorter_attribute_syntax

  213. "PHP RFC: Shorter Attribute Syntax Change". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/shorter_attribute_syntax_change

  214. "PHP RFC: Named Arguments". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/named_params

  215. "PHP RFC: Match expression v2". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/match_expression_v2

  216. "PHP RFC: Constructor Property Promotion". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/constructor_promotion

  217. "PHP RFC: Union Types 2.0". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/union_types_v2

  218. "PHP RFC: Mixed Type v2". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/mixed_type_v2

  219. "PHP RFC: Static return type". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/static_return_type

  220. "PHP RFC: Nullsafe operator". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/nullsafe_operator

  221. "PHP RFC: non-capturing catches". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/non-capturing_catches

  222. "PHP RFC: throw expression". wiki.php.net. Retrieved 14 August 2020. https://wiki.php.net/rfc/throw_expression

  223. Andre, Tyson. "PHP RFC: Always available JSON extension". PHP. Retrieved 25 October 2020. https://wiki.php.net/rfc/always_enable_json

  224. "PHP: todo:php81". wiki.php.net. Retrieved 2022-06-16. https://wiki.php.net/todo/php81

  225. "PHP RFC: Explicit octal integer literal notation". wiki.php.net. Retrieved 2020-11-25. https://wiki.php.net/rfc/explicit_octal_notation

  226. "PHP RFC: Enumerations". wiki.php.net. Retrieved 2021-03-25. https://wiki.php.net/rfc/enumerations

  227. "PHP: rfc:readonly_properties_v2". wiki.php.net. Retrieved 2021-11-26. https://wiki.php.net/rfc/readonly_properties_v2

  228. "PHP: rfc:first_class_callable_syntax". wiki.php.net. Retrieved 2021-11-26. https://wiki.php.net/rfc/first_class_callable_syntax

  229. "PHP: rfc:new_in_initializers". wiki.php.net. Retrieved 2021-11-26. https://wiki.php.net/rfc/new_in_initializers

  230. "PHP: rfc:pure-intersection-types". wiki.php.net. Retrieved 2021-11-26. https://wiki.php.net/rfc/pure-intersection-types

  231. "PHP: rfc:noreturn_type". wiki.php.net. Retrieved 2021-11-26. https://wiki.php.net/rfc/noreturn_type

  232. "PHP: rfc:final_class_const". wiki.php.net. Retrieved 2021-11-26. https://wiki.php.net/rfc/final_class_const

  233. "PHP: rfc:fibers". wiki.php.net. Retrieved 2021-11-26. https://wiki.php.net/rfc/fibers

  234. "PHP: todo:php82". wiki.php.net. Retrieved 2022-06-16. https://wiki.php.net/todo/php82

  235. "PHP: rfc:readonly_classes". wiki.php.net. Retrieved 2022-06-16. https://wiki.php.net/rfc/readonly_classes

  236. "PHP: rfc:null-false-standalone-types". wiki.php.net. Retrieved 2022-06-16. https://wiki.php.net/rfc/null-false-standalone-types

  237. "PHP: rfc:true-type". wiki.php.net. Retrieved 2022-06-16. https://wiki.php.net/rfc/true-type

  238. "PHP: rfc:strtolower-ascii". wiki.php.net. Retrieved 2022-06-16. https://wiki.php.net/rfc/strtolower-ascii

  239. "PHP: rfc:dnf_types". wiki.php.net. Retrieved 2023-02-07. https://wiki.php.net/rfc/dnf_types

  240. "PHP: rfc:constants_in_traits". wiki.php.net. Retrieved 2023-02-07. https://wiki.php.net/rfc/constants_in_traits

  241. "PHP 8.3.0 Released!". php.net. 23 November 2023. Retrieved 24 November 2023. https://www.php.net/archive/2023.php#2023-11-23-2

  242. "PHP: rfc:typed_class_constants". wiki.php.net. Retrieved 2023-12-17. https://wiki.php.net/rfc/typed_class_constants

  243. "PHP: rfc:dynamic_class_constant_fetch". wiki.php.net. Retrieved 2023-12-17. https://wiki.php.net/rfc/dynamic_class_constant_fetch

  244. "PHP: rfc:marking_overriden_methods". wiki.php.net. Retrieved 2023-12-17. https://wiki.php.net/rfc/marking_overriden_methods

  245. "PHP: rfc:readonly_amendments". wiki.php.net. Retrieved 2023-12-17. https://wiki.php.net/rfc/readonly_amendments

  246. "PHP: rfc:json_validate". wiki.php.net. Retrieved 2023-12-17. https://wiki.php.net/rfc/json_validate

  247. "PHP: rfc:randomizer_additions". wiki.php.net. Retrieved 2023-12-17. https://wiki.php.net/rfc/randomizer_additions

  248. "PHP: todo: php84". php.net. 26 March 2024. Retrieved 26 March 2024. https://wiki.php.net/todo/php84

  249. "PHP: Release Process". 2011-06-20. Retrieved 2013-10-06. https://wiki.php.net/rfc/releaseprocess

  250. "PHP: ElePHPant". 4 Oct 2014. Retrieved 4 Oct 2014. https://php.net/elephpant.php

  251. "Redirecting…". wwphp-fb.github.io. https://wwphp-fb.github.io/faq/community/elephpant/

  252. "The PHP Mascot's Birth – Creator Of The elePHPant Vincent Pontier Reveals The True Story!". 7php.com. 2014-01-06. https://7php.com/elephpant/

  253. "ElePHPant". PHP.earth. Retrieved 2024-02-13. https://docs.php.earth/php/community/elephpant/

  254. "PHP: ElePHPant". www.php.net. https://www.php.net/elephpant.php

  255. "A Field Guide to Elephpants". afieldguidetoelephpants.net. https://afieldguidetoelephpants.net/

  256. "tags – Manual". php.net. Retrieved 2014-02-17. https://www.php.net/manual/en/language.basic-syntax.phptags.php

  257. "PHP: rfc:shortags". php.net. 2008-04-03. Retrieved 2014-05-08. http://wiki.php.net/rfc/shortags

  258. "PHP: Basic syntax". The PHP Group. Retrieved 2008-02-22. https://www.php.net/manual/en/language.basic-syntax.php

  259. "Basic Coding Standard". PHP Framework Interoperability Group. Retrieved 2016-01-03. https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-coding-standard.md

  260. "echo – Manual". php.net. Retrieved 2014-02-17. https://www.php.net/echo

  261. "Description of core php.ini directives – Manual". php.net. 2002-03-17. Retrieved 2014-02-17. https://www.php.net/manual/en/ini.core.php#ini.short-open-tag

  262. "PHP: rfc:shortags". php.net. 2008-04-03. Retrieved 2014-05-08. http://wiki.php.net/rfc/shortags

  263. "Your first PHP-enabled page". The PHP Group. Retrieved 2008-02-25. https://www.php.net/manual/en/tutorial.firstpage.php

  264. Bray, Tim; et al. (26 November 2008). "Processing Instructions". Extensible Markup Language (XML) 1.0 (Fifth Edition). W3C. Retrieved 2009-06-18. http://www.w3.org/TR/2008/REC-xml-20081126/#sec-pi

  265. "RFC: Scalar Type Declarations". php.net. 2015-03-16. Retrieved 2015-03-17. https://wiki.php.net/rfc/scalar_type_hints_v5

  266. "Variables". The PHP Group. Retrieved 2008-03-16. https://www.php.net/manual/en/language.variables.php

  267. "Instruction separation". The PHP Group. Retrieved 2008-03-16. https://www.php.net/basic-syntax.instruction-separation

  268. "Comments". The PHP Group. Retrieved 2008-03-16. https://www.php.net/manual/en/language.basic-syntax.comments.php

  269. "Integers in PHP, running with scissors, and portability". MySQL Performance Blog. March 27, 2007. Retrieved 2007-03-28. http://www.mysqlperformanceblog.com/2007/03/27/integers-in-php-running-with-scissors-and-portability/

  270. "Types". The PHP Group. Retrieved 2008-03-16. https://www.php.net/manual/en/language.types.php

  271. "Types". The PHP Group. Retrieved 2008-03-16. https://www.php.net/manual/en/language.types.php

  272. "Types". The PHP Group. Retrieved 2008-03-16. https://www.php.net/manual/en/language.types.php

  273. "Types". The PHP Group. Retrieved 2008-03-16. https://www.php.net/manual/en/language.types.php

  274. "Types". The PHP Group. Retrieved 2008-03-16. https://www.php.net/manual/en/language.types.php

  275. "Strings". The PHP Group. Retrieved 2008-03-21. https://www.php.net/manual/en/language.types.string.php

  276. "SPL – StandardPHPLibrary". PHP.net. March 16, 2009. Retrieved 2009-03-16. https://www.php.net/spl

  277. "User-defined functions (PHP manual)". php.net. 2014-07-04. Retrieved 2014-07-07. https://www.php.net/manual/en/functions.user-defined.php

  278. "Variable functions (PHP manual)". php.net. 2014-07-04. Retrieved 2014-07-07. https://www.php.net/manual/en/functions.variable-functions.php

  279. "User-defined functions (PHP manual)". php.net. 2014-07-04. Retrieved 2014-07-07. https://www.php.net/manual/en/functions.user-defined.php

  280. "Variable functions (PHP manual)". php.net. 2014-07-04. Retrieved 2014-07-07. https://www.php.net/manual/en/functions.variable-functions.php

  281. "create_function() (PHP manual)". php.net. 2022-04-06. Retrieved 2022-05-04. https://www.php.net/manual/en/function.create-function.php

  282. "Anonymous functions (PHP manual)". php.net. 2014-07-04. Retrieved 2014-07-07. https://www.php.net/manual/en/functions.anonymous.php

  283. "Arrow Functions (PHP manual)". php.net. Retrieved 2021-01-25. https://www.php.net/manual/en/functions.arrow.php

  284. Christian Seiler; Dmitry Stogov (2008-07-01). "Request for Comments: Lambda functions and closures". php.net. Retrieved 2014-07-07. http://wiki.php.net/rfc/closures

  285. "RFC: Scalar Type Declarations". php.net. 2015-03-16. Retrieved 2015-03-17. https://wiki.php.net/rfc/scalar_type_hints_v5

  286. "RFC: Return Types". php.net. 2015-01-27. Retrieved 2015-01-28. https://wiki.php.net/rfc/return_types

  287. "RFC: Scalar Type Declarations". php.net. 2015-03-16. Retrieved 2015-03-17. https://wiki.php.net/rfc/scalar_type_hints_v5

  288. "RFC: Scalar Type Declarations". php.net. 2015-03-16. Retrieved 2015-03-17. https://wiki.php.net/rfc/scalar_type_hints_v5

  289. "History of PHP and related projects". The PHP Group. Retrieved 2008-02-25. https://www.php.net/history

  290. "PHP 5 Object References". mjtsai.com. Retrieved 2008-03-16. http://mjtsai.com/blog/2004/07/15/php-5-object-references/

  291. "PHP 5 Object References". mjtsai.com. Retrieved 2008-03-16. http://mjtsai.com/blog/2004/07/15/php-5-object-references/

  292. "Classes and Objects (PHP 5)". The PHP Group. Retrieved 2008-03-16. http://www.php.net/zend-engine-2.php

  293. "Object cloning". The PHP Group. Retrieved 2008-03-16. https://www.php.net/language.oop5.cloning

  294. "Visibility (PHP Manual)". theserverpages.com. 2005-05-19. Archived from the original on 2010-09-24. Retrieved 2010-08-26. https://web.archive.org/web/20100924033414/http://theserverpages.com/php/manual/en/language.oop5.visibility.php

  295. "How do computer languages work?". Archived from the original on 2011-07-16. Retrieved 2009-11-04. https://web.archive.org/web/20110716214917/http://www.linux-tutorial.info/modules.php?name=Howto&pagename=Unix-and-Internet-Fundamentals-HOWTO/languages.html

  296. Gilmore, W. Jason (2006-01-23). Beginning PHP and MySQL 5: From Novice to Professional. Apress. p. 43. ISBN 1-59059-552-1. 1-59059-552-1

  297. Julien Pauli; Nikita Popov; Anthony Ferrara. "PHP Internals Book". PHP Internals Book. Archived from the original on 2025-01-21. Retrieved 2025-01-21. https://www.phpinternalsbook.com

  298. "[VOTE] Integrating Zend Optimizer+ into the PHP distribution". news.php.net. Retrieved 2013-03-08. http://news.php.net/php.internals/66531

  299. "Alternative PHP Cache". PHP.net. Archived from the original on 2013-11-15. Retrieved 2013-09-21. https://web.archive.org/web/20131115071936/http://php.net/manual/en/book.apc.php

  300. "We are the 98.5% (and the 16%) « HipHop Virtual Machine". hhvm.com. December 2013. Retrieved 2014-02-23. http://www.hhvm.com/blog/2813/we-are-the-98-5-and-the-16

  301. "The Definitive PHP 5.6, 7.0, 7.1, 7.2 & 7.3 Benchmarks (2019)". 2019-01-14. Retrieved 2019-04-19. https://kinsta.com/blog/php-benchmarks/

  302. Krill, Paul (2017-09-20). "Forget PHP! Facebook's HHVM engine switches to Hack instead". InfoWorld. Retrieved 2019-02-06. https://www.infoworld.com/article/3226489/web-development/forget-php-facebooks-hhvm-engine-switches-to-hack-instead.html

  303. "Announcement on GitHub removing HPHPc support". GitHub. Retrieved 2013-05-24. https://github.com/facebook/hiphop-php/commit/fc5b95110ff75110ad55bb97f7c93a8c4eb68e3b

  304. "The PHP License, version 3.01". Retrieved 2010-05-20. https://www.php.net/license/3_01.txt

  305. "GPL-Incompatible, Free Software Licenses". Various Licenses and Comments about Them. Free Software Foundation. Retrieved 2011-01-03. https://www.gnu.org/licenses/license-list.html#GPLIncompatibleLicenses

  306. "PHP: Function and Method listing – Manual". The PHP Group. Retrieved 2015-01-14. https://php.net/manual/en/indexes.functions.php

  307. "Introduction – Manual". php.net. 2013-06-07. Retrieved 2013-06-13. http://www.php.net/manual/en/intro.pdo.php

  308. Darryl Patterson (5 August 2004). "Simplify Business Logic with PHP DataObjects — O'Reilly Media". ibm.com. Archived from the original on 16 December 2014. Retrieved 16 December 2014. https://web.archive.org/web/20141216140653/http://www.onlamp.com/pub/a/php/2004/08/05/dataobjects.html

  309. "IBM — United States". Retrieved 16 December 2014. http://www-128.ibm.com/developerworks/db2/library/techarticle/dm-0612xia/

  310. "Five common PHP database problems". ibm.com. 2006-08-01. Retrieved 2013-06-13. http://www-128.ibm.com/developerworks/library/os-php-dbmistake/index.html

  311. "IBM Redbooks — Developing PHP Applications for IBM Data Servers". redbooks.ibm.com. Retrieved 16 December 2014. http://www.redbooks.ibm.com/abstracts/sg247218.html

  312. "php[architect] Magazine – The Journal for PHP Programmers". www.phparch.com. http://www.phparch.com/issue.php?mid=65

  313. Krill, Paul (19 October 2005). "PHP catching on at enterprises, vying with Java". InfoWorld. Archived from the original on 13 July 2014. https://web.archive.org/web/20140713004345/http://www.infoworld.com/d/developer-world/php-catching-enterprises-vying-java-708

  314. "Cross Reference: /PHP_5_4/ext/standard/". php.net. Archived from the original on 16 March 2012. Retrieved 16 December 2014. https://web.archive.org/web/20120316010914/http://lxr.php.net/xref/PHP_5_4/ext/standard/

  315. "Developing Custom PHP Extensions". devnewz.com. 2002-09-09. Archived from the original on 2008-02-18. Retrieved 2008-02-25. https://web.archive.org/web/20080218045752/http://www.devnewz.com/090902b.html

  316. "Why Zephir?". zephir-lang.com. 2015-10-20. Retrieved 2015-12-14. https://docs.zephir-lang.com/en/latest/motivation.html

  317. "PHP Credits". Retrieved 2018-12-16. https://php.net/credits

  318. "Learn PHP Via PHP Training and PHP Certification". www.zend.com. Retrieved 2020-11-16. https://www.zend.com/training/php

  319. "The New Life of PHP – The PHP Foundation | The PhpStorm Blog". The JetBrains Blog. 22 November 2021. Retrieved 2022-06-16. https://blog.jetbrains.com/phpstorm/2021/11/the-php-foundation/

  320. "The PHP Foundation: Impact and Transparency Report 2022". thephp.foundation. Retrieved 2023-11-27. https://thephp.foundation/blog/2022/11/22/transparency-and-impact-report-2022/

  321. Pronskiy, Roman (2024-02-26). "The PHP Foundation: Impact and Transparency Report 2023". The PHP Foundation. Retrieved 2024-04-01. https://thephp.foundation/blog/2024/02/26/transparency-and-impact-report-2023/

  322. Anderson, Tim. "PHP Foundation formed to fund core developers". www.theregister.com. Retrieved 2023-12-05. https://www.theregister.com/2021/11/23/php_foundation_formed_to_fund/

  323. "Programming languages: This old favourite is gaining popularity again". ZDNET. Retrieved 2023-12-05. https://www.zdnet.com/article/programming-languages-this-old-favourite-is-gaining-popularity-again/

  324. "PHP 8.1 Released With Enums, Read-Only Properties and Fibers". www.i-programmer.info. Retrieved 2023-12-05. https://www.i-programmer.info/news/98-languages/15050-php-81-released.html

  325. "It's time for the PHP Foundation to #StopBreakingPHP". trongate.io. Retrieved 2023-11-27. https://trongate.io/news/display/TWN4GR/its-time-for-the-php-foundation-to-stopbreakingphp

  326. "WordPress 6.4 PHP Compatibility". Make WordPress Hosting. 2023-11-16. Retrieved 2023-11-27. https://make.wordpress.org/hosting/2023/11/16/wordpress-6-4-php-compatibility/

  327. "PHP". Sovereign Tech Fund. Retrieved 2024-05-26. https://www.sovereigntechfund.de/tech/php

  328. "General Installation Considerations". php.net. Retrieved 2013-09-22. http://www.php.net/manual/en/install.general.php

  329. "News Archive: PHP 5.3.3 Released!". php.net. 2010-07-22. http://www.php.net/archive/2010.php#id2010-07-22-2

  330. "FastCGI Process Manager (FPM)". php.net. Retrieved 2013-09-22. http://www.php.net/manual/en/install.fpm.php

  331. "Command line usage: Introduction". php.net. Retrieved 2013-09-22. http://www.php.net/manual/en/features.commandline.introduction.php

  332. "Command line usage: Differences to other SAPIs". php.net. Retrieved 2013-09-22. http://www.php.net/manual/en/features.commandline.differences.php

  333. "General Installation Considerations". php.net. Retrieved 2013-09-22. https://php.net/manual/en/install.general.php

  334. "PHP: Apache 2.x on Microsoft Windows". php.net. Archived from the original on 2013-09-26. Retrieved 2013-09-22. https://web.archive.org/web/20130926122011/http://php.net/manual/en/install.windows.apache2.php

  335. "General Installation Considerations". php.net. Retrieved 2013-09-22. https://php.net/manual/en/install.general.php

  336. "Command line usage: Introduction". php.net. Retrieved 2013-09-22. http://www.php.net/manual/en/features.commandline.introduction.php

  337. "General Installation Considerations". php.net. Retrieved 2013-09-22. http://www.php.net/manual/en/install.general.php

  338. "Installing PHP-GTK 2". php.net. Archived from the original on 2013-12-12. Retrieved 2013-09-22. https://web.archive.org/web/20131212093441/http://gtk.php.net/manual/en/tutorials.installation.php

  339. "AWS SDK for PHP". aws.amazon.com. Retrieved 2014-03-06. http://aws.amazon.com/sdkforphp/

  340. "Windows Azure SDK for PHP — Interoperability Bridges and Labs Center". interoperabilitybridges.com. Archived from the original on 2014-03-20. Retrieved 2014-03-06. https://web.archive.org/web/20140320152702/http://www.interoperabilitybridges.com/projects/php-sdk-for-windows-azure.aspx

  341. "Runtime configuration: Table of contents". php.net. Retrieved 2013-09-22. http://www.php.net/manual/en/configuration.php

  342. "php.ini directives: List of php.ini directives". php.net. Retrieved 2013-09-22. http://www.php.net/manual/en/ini.list.php

  343. "Runtime configuration: The configuration file". PHP.net. Retrieved 2013-09-22. http://www.php.net/manual/en/configuration.file.php

  344. "php.ini directives: List of php.ini sections". PHP.net. Retrieved 2013-09-22. http://www.php.net/manual/en/ini.sections.php

  345. "Runtime configuration: Where a configuration setting may be set". PHP.net. Retrieved 2013-09-22. http://www.php.net/manual/en/configuration.changes.modes.php

  346. "PHP Manual Image Processing and GD;". php.net. Retrieved 2011-04-09. https://php.net/manual/en/book.image.php

  347. "Embedding PHP in HTML". O'Reilly. 2001-05-03. Archived from the original on 2008-02-19. Retrieved 2008-02-25. https://web.archive.org/web/20080219180226/http://www.onlamp.com/pub/a/php/2001/05/03/php_foundations.html

  348. "PHP Server-Side Scripting Language". Indiana University. 2007-04-04. Archived from the original on 2016-01-21. Retrieved 2008-02-25. https://web.archive.org/web/20160121223739/http://webmaster.iu.edu/tools-and-guides/programming-languages/php.phtml

  349. "JavaServer Pages Technology — JavaServer Pages Comparing Methods for Server-Side Dynamic Content White Paper". Sun Microsystems. Retrieved 2008-02-25. http://java.sun.com/products/jsp/jspservlet.html

  350. "Five simple ways to tune your LAMP application". IBM. 2011-01-25. http://www.ibm.com/developerworks/library/os-5waystunelamp/index.html

  351. "PHP at the core: Extension structure". PHP.net. Archived from the original on 2013-09-26. Retrieved 2013-09-22. https://web.archive.org/web/20130926082102/http://www.php.net/manual/en/internals2.structure.php

  352. "PHP at the core: The "counter" Extension – A Continuing Example". PHP.net. Archived from the original on 2013-09-26. Retrieved 2013-09-22. https://web.archive.org/web/20130926082106/http://www.php.net/manual/en/internals2.counter.php

  353. "Extension Writing Part I: Introduction to PHP and Zend". Zend Technologies. 2005-03-01. Archived from the original on 2013-09-24. Retrieved 2013-09-22. https://web.archive.org/web/20130924233638/http://devzone.zend.com/303/extension-writing-part-i-introduction-to-php-and-zend/

  354. "Extension Writing Part II: Parameters, Arrays, and ZVALs". Zend Technologies. 2005-06-06. Archived from the original on 2013-09-26. Retrieved 2013-09-22. https://web.archive.org/web/20130926091658/http://devzone.zend.com/317/extension-writing-part-ii-parameters-arrays-and-zvals/

  355. "Extension Writing Part II: Parameters, Arrays, and ZVALs (continued)". Zend Technologies. 2005-06-06. Archived from the original on 2013-09-26. Retrieved 2013-09-22. https://web.archive.org/web/20130926091655/http://devzone.zend.com/318/extension-writing-part-ii-parameters-arrays-and-zvals-continued/

  356. "Extension Writing Part III: Resources". Zend Technologies. 2006-05-12. Archived from the original on 2013-09-26. Retrieved 2013-09-22. https://web.archive.org/web/20130926091645/http://devzone.zend.com/446/extension-writing-part-iii-resources/

  357. "Wrapping C++ Classes in a PHP Extension". Zend Technologies. 2009-04-22. Archived from the original on 2013-09-20. Retrieved 2013-09-22. https://web.archive.org/web/20130920011549/http://devzone.zend.com/1435/wrapping-c-classes-in-a-php-extension/

  358. "Extending PHP with C++?". Stack Overflow. Retrieved 2013-09-22. https://stackoverflow.com/q/1110682

  359. "How can I use C++ code to interact with PHP?". Stack Overflow. Retrieved 2013-09-22. https://stackoverflow.com/q/1502244

  360. Golemon, Sara (2006). Extending and Embedding PHP. Sams. ISBN 978-0-672-32704-9. 978-0-672-32704-9

  361. "Request #46919: Multithreading". PHP.net. Retrieved 2013-09-22. https://bugs.php.net/bug.php?id=46919

  362. "pthreads: Introduction (PHP Manual)". PHP.net. Retrieved 2013-09-22. http://www.php.net/manual/en/intro.pthreads.php

  363. "PECL :: Package :: pthreads". pecl.php.net. Retrieved 2014-02-09. https://pecl.php.net/package/pthreads

  364. "Manual:Installation requirements#PHP". MediaWiki. 2010-01-25. Retrieved 2010-02-26. PHP is the programming language in which MediaWiki is written [...] https://www.mediawiki.org/w/index.php?title=Manual:Installation_requirements&oldid=299556#PHP

  365. "About WordPress". Retrieved 2010-02-26. WordPress was [...] built on PHP http://wordpress.org/about/

  366. Kempkens, Alex. "Joomla! — Content Management System to build websites & apps". http://www.joomla.org/about-joomla.html

  367. "PHP and Drupal". Drupal.org. 16 September 2007. Archived from the original on 2010-02-08. Retrieved 2010-06-13. https://web.archive.org/web/20100208205523/http://drupal.org/node/176052

  368. "About". Moodle.org. Archived from the original on 2010-01-11. Retrieved 2009-12-20. https://web.archive.org/web/20100111055644/http://docs.moodle.org/en/About_Moodle

  369. "Server requirements of SilverStripe". Archived from the original on 28 November 2014. Retrieved 13 October 2014. SilverStripe requires PHP 5.3.2+ https://web.archive.org/web/20141128063118/http://doc.silverstripe.org/framework/en/installation/server-requirements

  370. Ide, Andy (2013-01-31). "PHP just grows & grows". Retrieved 2013-04-01. http://news.netcraft.com/archives/2013/01/31/php-just-grows-grows.html

  371. "Usage statistics of PHP for websites". W3Techs – World Wide Web Technology Surveys. W3Techs. Retrieved 21 January 2025. https://w3techs.com/technologies/details/pl-php

  372. "National Vulnerability Database (NVD) Search Vulnerabilities Statistics". Retrieved 2019-11-22. https://nvd.nist.gov/vuln/search/statistics?form_type=Basic&results_type=statistics&query=PHP&queryType=phrase&search_type=all

  373. "PHP-related vulnerabilities on the National Vulnerability Database". 2012-07-05. Archived from the original on 2009-06-28. Retrieved 2013-04-01. https://web.archive.org/web/20090628173101/http://www.coelho.net/php_cve.html

  374. "Developer Meeting Notes, Nov. 2005". http://derickrethans.nl/files/meeting-notes.html#sand-boxing-or-taint-mode

  375. "Taint mode decision, November 2007". Archived from the original on 2009-02-26. https://web.archive.org/web/20090226124957/http://devzone.zend.com/article/2798-Zend-Weekly-Summaries-Issue-368#Heading1

  376. "PHP: rfc:taint". wiki.php.net. https://wiki.php.net/rfc/taint

  377. "Hardened-PHP Project". 2008-08-15. Archived from the original on 2019-02-24. Retrieved 2019-08-22. https://web.archive.org/web/20190224012812/http://www.hardened-php.net/

  378. "Snuffleupagus Documentation". https://snuffleupagus.readthedocs.io/

  379. "Security: Using Register Globals". PHP Manual. PHP.net. Archived from the original on 2013-09-27. Retrieved 2013-09-22. https://web.archive.org/web/20130927161000/http://php.net/manual/en/security.globals.php

  380. "Magic Quotes". PHP Manual. PHP.net. Archived from the original on 2014-02-08. Retrieved 2014-01-17. https://web.archive.org/web/20140208000607/http://www.php.net/manual/en/security.magicquotes.php

  381. "'engine' configuration directive". PHP: Runtime Configuration. PHP.net. Retrieved 2014-02-13. http://www.php.net/manual/en/apache.configuration.php#ini.engine

  382. "PHP Security Exploit With GIF Images". 2007-06-22. Archived from the original on 2013-09-27. Retrieved 2013-09-22. https://web.archive.org/web/20130927162421/http://devzone.zend.com/1008/php-security-exploit-with-gif-images/

  383. "PHP security exploit with GIF images". PHP Classes blog. 2007-06-20. Retrieved 2013-09-22. http://www.phpclasses.org/blog/post/67-PHP-security-exploit-with-GIF-images.html

  384. "Passing Malicious PHP Through getimagesize()". 2007-06-04. Archived from the original on 2013-09-21. Retrieved 2013-09-22. https://web.archive.org/web/20130921222424/http://ha.ckers.org/blog/20070604/passing-malicious-php-through-getimagesize

  385. "'enable_dl' configuration directive". PHP: Runtime Configuration. PHP.net. Retrieved 2014-02-13. http://www.php.net/manual/en/info.configuration.php#ini.enable-dl

  386. "PHP function reference: dl()". PHP.net. Retrieved 2013-09-22. https://php.net/manual/en/function.dl.php

  387. "My host won't fix their Trojan". WebHosting Talk. Retrieved 2013-09-22. http://www.webhostingtalk.com/showthread.php?t=514779

  388. 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) http://raz0r.name/vulnerabilities/simple-machines-forum/

  389. Nibble Security. "TYPO3-SA-2010-020, TYPO3-SA-2010-022 EXPLAINED". http://blog.nibblesec.org/2010/12/typo3-sa-2010-020-typo3-sa-2010-022.html

  390. "Криптостойкость и небезопасное сравнение". ahack.ru (in Russian). Archived from the original on 4 July 2017. https://web.archive.org/web/20170704214011/https://ahack.ru/articles/cryptographic-security-and-php-applications.htm

  391. Krawczyk, Pawel (2013). "Most common attacks on web applications". IPSec.pl. Archived from the original on 2015-04-15. Retrieved 2015-04-15. https://web.archive.org/web/20150415150236/https://ipsec.pl/web-application-security/most-common-attacks-web-applications.html

  392. Krawczyk, Pawel (2013). "So what are the "most critical" application flaws? On new OWASP Top 10". IPSec.pl. Retrieved 2015-04-15. https://ipsec.pl/application-security/2013/so-what-are-most-critical-application-flaws-new-owasp-top-10.html

  393. "PHP: Rand – Manual". https://php.net/rand

  394. "PHP: Mt_rand - Manual". https://php.net/mt_rand

  395. "PHP: Random_int – Manual". https://php.net/random_int

  396. Argyros, George; Kiayias, Aggelos (10 August 2012). "I Forgot Your Password: Randomness Attacks Against PHP Applications". usenix.org. USENIX. Retrieved 19 April 2024. https://www.usenix.org/conference/usenixsecurity12/technical-sessions/presentation/argyros

  397. "PHP: RFC:release_cycle_update". https://wiki.php.net/rfc/release_cycle_update

  398. "PHP Support for PHP 7.2 – 8.0 | PHP LTS | Zend by Perforce". Retrieved 2024-05-23. https://www.zend.com/services/php-long-term-support

  399. "Pagely PHP Long Term Support Page". Pagely. Retrieved 2024-09-14. https://pagely.com/solutions/php-long-term-support/