PHP
Zend Technologies, PHP Foundation | |
First appeared | 8 June 1995[1][2] |
---|---|
Stable release | 8.3.11
/ 29 August 2024[3] |
Preview release | 8.4.0 Beta 4
/ 29 August 2024[4] |
Quercus, Parrot | |
Influenced by | |
Perl, C, C++, Java,[7] Tcl,[2] JavaScript[8] | |
Influenced | |
Hack, JSP, ASP, React JS | |
|
PHP is a general-purpose scripting language geared towards web development.[9] It was originally created by Danish-Canadian programmer Rasmus Lerdorf in 1993 and released in 1995.[10][11] The PHP reference implementation is now produced by the PHP Group.[12] PHP was originally an abbreviation of Personal Home Page,[13][14] but it now stands for the recursive acronym PHP: Hypertext Preprocessor.[15]
PHP code is usually processed on a
The standard PHP interpreter, powered by the Zend Engine, is free software released under the PHP License. PHP has been widely ported and can be deployed on most web servers on a variety of operating systems and platforms.[18]
The PHP language has evolved without a written formal specification or standard, with the original implementation acting as the de facto standard that other implementations aimed to follow.
W3Techs reports that as of 23 May 2024[update] (the six months after the PHP 8.3 release), PHP is used by 76.2% of all websites whose programming language could be determined, and 55.1% thereof use PHP 7 which is outdated and known to be insecure.[19][20]
History
Early history
PHP development began in 1993
An example of the early PHP syntax:[23]
<!--include /text/header.html-->
<!--getenv HTTP_USER_AGENT-->
<!--if substr $exec_result Mozilla-->
Hey, you are using Netscape!<p>
<!--endif-->
<!--sql database select * from table where user='$username'-->
<!--ifless $numentries 1-->
Sorry, that record does not exist<p>
<!--endif exit-->
Welcome <!--$user-->!<p>
You have <!--$index:0--> credits left in your account.<p>
<!--include /text/footer.html-->
PHP/FI could be used to build simple,
Early PHP was never intended to be a new
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.
PHP 3 and 4
On 22 May 2000, PHP 4, powered by the Zend Engine 1.0, was released.[12] By August 2008, this branch had reached version 4.4.9. PHP 4 is now no longer under development and nor are any security updates planned to be released.[32][33]
PHP 5
On 1 July 2004, PHP 5 was released, powered by the new Zend Engine II.
Many high-profile open-source projects ceased to support PHP 4 in new code from February 5, 2008, because of the GoPHP5 initiative,[37] provided by a consortium of PHP developers promoting the transition from PHP 4 to PHP 5.[38][39]
Over time, PHP interpreters became available on most existing
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.[45][46] In 2005, a project headed by Andrei Zmievski was initiated to bring native Unicode support throughout PHP, by embedding the International Components for Unicode (ICU) library, and representing text strings as UTF-16 internally.[47] Since this would cause major changes both to the internals of the language and to user code, it was planned to release this as version 6.0 of the language, along with other major features then in development.[48]
However, a shortage of developers who understood the necessary changes, and performance problems arising from conversion to and from UTF-16, which is rarely used in a web context, led to delays in the project.[49] As a result, a PHP 5.3 release was created in 2009, with many non-Unicode features back-ported from PHP 6, notably namespaces. In March 2010, the project in its current form was officially abandoned, and a PHP 5.4 release was prepared to contain most remaining non-Unicode features from PHP 6, such as traits and closure re-binding.[50] Initial hopes were that a new plan would be formed for Unicode integration, but by 2014 none had been adopted.[citation needed]
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.[citation needed] In particular, it involved the following changes:
- Many fatal or recoverable-level legacy PHP error mechanisms were replaced with modern object-oriented exceptions.[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 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.[69][70]
PHP 7 also included new language features. Most notably, it introduced return type declarations for functions[71] which complement the existing parameter type declarations, and support for the scalar types (integer, float, string, and boolean) in parameter and return type declarations.[72]
PHP 8
PHP 8 was released on 26 November 2020, and is currently the second-most used PHP major version. PHP 8 is a major version and has breaking changes from previous versions.[73][74] New features and notable changes include:
Just-in-time compilation
Just-in-time compilation is supported in PHP 8.[75]
PHP 8's JIT compiler can provide substantial performance improvements for some use cases,[76][77] while PHP developer Nikita Popov stated that the performance improvements for most websites will be less substantial than the upgrade from PHP 5 to PHP 7.[78] Substantial improvements are expected more for mathematical-type operations than for common web-development use cases.[78] Additionally, the JIT compiler provides the future potential to move some code from C to PHP, due to the performance improvements for some use cases.[79]
Addition of the match expression
PHP 8 introduced the match
expression.[80] The match expression is conceptually similar to a switch
statement and is more compact for some use cases.[81] Because match
is an expression, its result can be assigned to a variable or returned from a function.[82]
Type changes and additions
PHP 8 introduced union types, a new static
return type, and a new mixed
type.[73]
"Attributes", often referred to as "annotations" in other programming languages, were added in PHP 8, which allow metadata to be added to classes.[73]
throw
was changed from being a statement to being an expression.[83] This allows exceptions to be thrown in places that were not previously possible.[73]
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.[84] The following code snippet will not throw an error if getBirthday()
returns null:
$human_readable_date = $user->getBirthday()?->diffForHumans();
Constructor property promotion has been added as "syntactic sugar," allowing class properties to be set automatically when parameters are passed into a class constructor.[73] This reduces the amount of boilerplate code that must be written.[85]
Other minor changes include support for use of ::class
on objects, which serves as an alternative for the use of get_class()
;[73] non-capturing catches in try-catch blocks; variable syntax tweaks to resolve inconsistencies; support for named arguments; and support for trailing commas in parameter lists, which adds consistency with support for trailing commas in other contexts, such as in arrays.[74]
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.[86] This can provide performance improvements in scenarios where data is being cached; this is of particular relevance for object–relational mappings (ORM).[73] - Various adjustments to interfaces, such as adding support for creating
DateTime
objects from interfaces, and the addition of aStringable
interface that can be used for type hinting.[73] - Various new functions including
str_contains()
,str_starts_with()
, andstr_ends_with()
;[87]fdiv()
;get_debug_type()
; andget_resource_id()
[73] - Object implementation of
token_get_all()
[73]
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."[88]
- Inheritance with private methods[73]
- Abstract methods in traits improvements[73]
PHP 8.1
PHP 8.1 was released on November 25, 2021.[89] It added support for enumerations (also called "enums"), declaring properties as readonly
(which prevents modification of the property after initialization), and array unpacking with string keys. The new never type can be used to indicate that a function does not return.[90]
PHP 8.2
PHP 8.2 was released on December 8, 2022.[91] New in this release are readonly
classes (whose instance properties are implicitly readonly), disjunctive normal form (DNF) types, and the random
extension, which provides a pseudorandom number generator with an object-oriented API,[92] Sensitive Parameter value redaction, and a ton of other features.
Release history
Version | Release date | Supported until[93] | Notes |
---|---|---|---|
1.0 | 8 June 1995 | Officially called "Personal Home Page Tools (PHP Tools)". This is the first use of the name "PHP".[12] | |
2.0 | 1 November 1997 | Officially called "PHP/FI 2.0". This is the first release that could actually be characterised as PHP, being a standalone language with many features that have endured to the present day. | |
3.0 | 6 June 1998 | 20 October 2000[93] | Development moves from one person to multiple developers. Zeev Suraski and Andi Gutmans rewritten the base for this version.[12] |
4.0 | 22 May 2000[94] | 23 June 2001[93] | Added more advanced two-stage parse/execute tag-parsing system called the Zend engine.[95] |
4.1 | 10 December 2001[96] | 12 March 2002[93] | Introduced "superglobals" ($_GET , $_POST , $_SESSION , etc.)[95]
|
4.2 | 22 April 2002[97] | 6 September 2002[93] | Disabled register_globals by default. Data received over the network is not inserted directly into the global namespace anymore, closing possible security holes in applications.[95]
|
4.3 | 27 December 2002[98] | 31 March 2005[93] | Introduced the command-line interface (CLI), to supplement the CGI.[95][99] |
4.4 | 11 July 2005[100] | 7 August 2008[93] | Fixed a memory corruption bug, which required breaking binary compatibility with extensions compiled against PHP version 4.3.x.[101] |
5.0 | 13 July 2004[102] | 5 September 2005[93] | Zend Engine II with a new object model.[103] |
5.1 | 24 November 2005[104] | 24 August 2006[93] | Performance improvements with the introduction of compiler variables in re-engineered PHP Engine.[103] Added PHP Data Objects (PDO) as a consistent interface for accessing databases.[105] |
5.2 | 2 November 2006[106] | 6 January 2011[93] | Enabled the filter extension by default. Native JSON support.[103] |
5.3 | 30 June 2009[107] | 14 August 2014[93] | Namespace support; late static bindings, jump label (limited goto), anonymous functions, closures, PHP archives (phar), garbage collection for circular references, improved Windows support, sqlite3, mysqlnd as a replacement for libmysql as the underlying library for the extensions that work with MySQL, fileinfo as a replacement for mime_magic for better MIME support, the Internationalization extension, and deprecation of ereg extension. |
5.4 | 1 March 2012[108] | 3 September 2015[93] | Trait support, short array syntax support. Removed items: register_globals , safe_mode , allow_call_time_pass_reference , session_register() , session_unregister() and session_is_registered() . Built-in web server.[109] Several improvements to existing features, performance and reduced memory requirements.
|
5.5 | 20 June 2013[110] | 10 July 2016[111] | Support for generators, finally blocks for exceptions handling, OpCache (based on Zend Optimizer+) bundled in official distribution.[112]
|
5.6 | 28 August 2014[113] | 31 December 2018[111] | Constant scalar expressions, variadic functions, argument unpacking, new exponentiation operator, extensions of the use statement for functions and constants, new phpdbg debugger as a SAPI module, and other smaller improvements.[114]
|
6.x | Not released | — | Abandoned version of PHP that planned to include native Unicode support.[115][116] |
7.0 | 3 December 2015[117] | 10 January 2019[58] | Zend Engine 3 (performance improvements |
7.1 | 1 December 2016 | 1 December 2019[111] | iterable type,[129] nullable types,[130] void return type,[131] class constant visibility modifiers,[132] short list syntax,[133] multi-catch[134]
|
7.2 | 30 November 2017 | 30 November 2020[111] | Object parameter and return type declaration,[135] libsodium extension,[136] abstract method overriding,[137] parameter type widening[138] |
7.3 | 6 December 2018[139] | 6 December 2021 | Flexible Heredoc and Nowdoc syntax,[140] support for reference assignment and array deconstruction with list() ,[141] PCRE2 support,[142] hrtime function[143]
|
7.4 | 28 November 2019[144] | 28 November 2022 | Typed properties 2.0,[145] preloading,[146] null-coalescing assignment operator,[147] improve openssl_random_pseudo_bytes ,[148] weak references,[86] foreign function interface (FFI),[149] always available hash extension,[150] password hash registry,[151] multibyte string splitting,[152] reflection for references,[153] unbundle ext/wddx,[154] new custom object serialization mechanism[155]
|
8.0 | 26 November 2020[156] | 26 November 2023 | Just-In-Time (JIT) compilation,[75] arrays starting with a negative index,[157] stricter/saner language semantics (validation for abstract trait methods),[158] saner string to number comparisons,[159] saner numeric strings,[160] TypeError on invalid arithmetic/bitwise operators,[161] reclassification of various engine errors,[162] consistent type errors for internal functions,[163] fatal error for incompatible method signatures[164]), locale-independent float to string conversion,[165] variable syntax tweaks,[166] attributes,[167][168][169][170] named arguments,[171] match expression,[172] constructor property promotion,[173] union types,[174] mixed type,[175] static return type,[176] nullsafe operator,[84] non-capturing catches,[177] throw expression,[83] JSON extension is always available.[178]
|
8.1 | 25 November 2021[179] | 31 December 2025 | Explicit octal integer literal notation,[180] enumerations,[181] read-only properties,[182] first-class callable syntax,[183] new in initializers,[184] pure intersection types,[185] never return type,[186] final class constraints,[187] fibers[188]
|
8.2 | 8 December 2022[189] | 31 December 2026 | Readonly classes,[190] null , false , and true as stand-alone types,[191][192] locale-independent case conversion,[193] disjunctive normal form types,[194] constants in traits[195]
|
8.3 | 23 November 2023[196] | 31 December 2027 | Typed class constants,[197] dynamic class constant fetch,[198] #[\Override] attribute,[199] deep-cloning of read-only properties,[200] new json_validate function,[201] randomizer additions,[202] the command-line linter supports multiple files
|
8.4 | 21 November 2024[203] | 31 December 2028 | |
Legend: Old version Older version, still maintained Latest version Future release |
Beginning on 28 June 2011, the PHP Development Team implemented a timeline for the release of new versions of PHP.[58] Under this system, at least one release should occur every month. Once per year, a minor release should occur which may include new features. Every minor release should at least be supported for two years with security and bug fixes, followed by at least one year of only security fixes, for a total of a three-year release process for every minor release. No new features, unless small and self-contained, are to be introduced into a minor release during the three-year release process.
Mascot
The mascot of the PHP project is the elePHPant, a blue
Many variations of this mascot have been made over the years. Only the elePHPants based on the original design by Vincent Pontier are considered official by the community.[208] These are collectable and some of them are extremely rare.[209]
Syntax
The following "Hello, World!" program is written in PHP code embedded in an HTML document:
<!DOCTYPE html>
<html>
<head>
<title>PHP "Hello, World!" program</title>
</head>
<body>
<p><?= 'Hello, World!' ?></p>
</body>
</html>
However, as no requirement exists for PHP code to be embedded in HTML, the simplest version of Hello, World! may be written like this, with the closing tag ?>
omitted as preferred in files containing pure PHP code.[210]
<?php echo 'Hello, World!';
The PHP interpreter only executes PHP code within its
<?php
to open and ?>
to close PHP sections. The shortened form <?
also exists. This short delimiter makes script files less portable since support for them can be disabled in the local PHP configuration and it is therefore discouraged.[211][212] Conversely, there is no recommendation against the echo short tag <?=
.[213] Prior to PHP 5.4.0, this short syntax for echo
only works with the short_open_tag
configuration setting enabled, while for PHP 5.4.0 and later it is always available.[214][215][211] The purpose of all these delimiters is to separate PHP code from non-PHP content, such as JavaScript code or HTML markup.[216] So the shortest "Hello, World!" program<?='Hello, World!';
The first form of delimiters, <?php
and ?>
, in XHTML and other XML documents, creates correctly formed XML processing instructions.[217] This means that the resulting mixture of PHP code and other markups in the server-side file is itself well-formed XML.
Variables are
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
/* */
marks block and inline comments; //
or #
are used for one-line comments.[220] The echo
statement is one of several facilities PHP provides to output text.[citation neededIn terms of keywords and language syntax, PHP is similar to C-style syntax. if
conditions, for
and while
loops and function returns are similar in syntax to languages such as C, C++, C#, Java and Perl.[citation needed]
Data types
PHP is
The null data type represents a variable that has no value; NULL
is the only allowed value for this data type.[222]
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.[222]
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
The Standard PHP Library (SPL) attempts to solve standard problems and implements efficient data access interfaces and classes.[224]
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.[225] However, the built-in library has a wide variety of naming conventions and associated inconsistencies, as described under history above.
Custom functions may be defined by the developer:
function myAge(int $birthYear): string
{
// calculate the age by subtracting the birth year from the current year.
$yearsOld = date('Y') - $birthYear;
// return the age in a descriptive string.
return $yearsOld . ($yearsOld == 1 ? ' year' : ' years');
}
echo 'I am currently ' . myAge(1995) . ' old.';
As of 2024, the output of the above sample program is "I am currently 29 years old."
In lieu of
new
, in which case parentheses are optional.[citation neededSince PHP 4.0.1 create_function()
, a thin wrapper around eval()
, allowed normal PHP functions to be created during program execution; it was deprecated in PHP 7.2 and removed in PHP 8.0[227] in favor of syntax for anonymous functions or "closures"[228] that can capture variables from the surrounding scope, which was added in PHP 5.3. Shorthand arrow syntax was added in PHP 7.4:[229]
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.[230]
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.[72] 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.[71] 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.[72] However, PHP 7 has a "strict typing" mode which, when used, disallows such conversions for function calls and returns within a file.[72]
PHP objects
Basic
PHP 5 introduced private and protected
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.[233]
The
private
limits visibility only to the class that defines the item.[234] Objects of the same type have access to each other's private and protected members even though they are not the same instance.[citation neededExample
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.[235][236] It is also the "reference implementation" of PHP, as PHP has no formal specification, and so the semantics of Zend PHP define the semantics of PHP. Due to the complex and nuanced semantics of PHP, defined by how Zend works, it is difficult for competing implementations to offer complete compatibility.[citation needed]
PHP's single-request-per-script-execution model, and the fact that the Zend Engine is an interpreter, leads to inefficiency; as a result, various products have been developed to help improve PHP performance. In order to speed up execution time and not have to compile the PHP source code every time the web page is accessed, PHP scripts can also be deployed in the PHP engine's internal format by using an
While Zend PHP is still the most popular implementation, several other implementations have been developed. Some of these are
- just-in-time (JIT) compiler, resulting in up to 6× performance improvements.[239] However, since version 7.2 Zend has outperformed HHVM,[240] and HHVM 3.24 is the last version to officially support PHP.[241]
- 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()
andeval()
constructs.[242]
- 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
- 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
PHP is free software released under the PHP License, which stipulates that:[243]
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 "
Foofor PHP" instead of calling it "PHP Foo" or "phpfoo".
This restriction on the use of "PHP" makes the PHP License incompatible with the
Development and community
PHP includes various
PHP allows developers to write
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.[255]
By December 2018 the PHP Group consisted of ten people:
The PHP Foundation
Formation | November 22, 2021 |
---|---|
Founder | Automattic, Laravel, Acquia, Zend, Private Packagist, Symfony, Craft CMS, Tideways, PrestaShop, JetBrains[258] |
Website | https://thephp.foundation |
On 26 November 2021, the JetBrains blog announced the creation of The PHP Foundation, which will sponsor the design and development of PHP.[259]
Year | Commits | Reviews | RFCs |
---|---|---|---|
2022[260] | 683 | 283 | 8 |
2023[261] | 784 | 702 | 17 |
The foundation hires "Core Developers" to work on the PHP language's core repository. Roman Pronskiy, a member of the foundation's board, said that they aim to pay "market salaries" to developers.[262]
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.[263][264] However, it has also been criticised for adding breaking changes to minor versions of PHP, such as in PHP 8.2 where initialising members of a class out-with the original class scope would cause depreciation errors,[265] these changes impacted a number of open source projects including WordPress. [266]
Germany's Sovereign Tech Fund provided more than 200,000 Euros to support the PHP Foundation.[267]
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.[268]
PHP-FPM (FastCGI Process Manager) is an alternative FastCGI implementation for PHP, bundled with the official PHP distribution since version 5.3.3.[269] When compared to the older FastCGI implementation, it contains some additional features, mostly useful for heavily loaded web servers.[270]
When using PHP for command-line scripting, a PHP
PHP has a direct module interface called SAPI for different web servers;[273] in case of PHP 5 and Apache 2.0 on Windows, it is provided in form of a DLL file called php5apache2.dll,[274] which is a module that, among other functions, provides an interface between PHP and the web server, implemented in a form that the server understands. This form is what is known as a SAPI.[citation needed]
There are different kinds of SAPIs for various web server extensions. For example, in addition to those listed above, other SAPIs for the PHP language include the Common Gateway Interface and command-line interface.[273][275]
PHP can also be used for writing desktop graphical user interface (GUI) applications, by using the PHP-GTK extension. PHP-GTK is not included in the official PHP distribution,[268] 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.[276]
When PHP is installed and used in cloud environments, software development kits (SDKs) are provided for using cloud-specific features.[citation needed] For example:
- Amazon Web Services provides the AWS SDK for PHP[277]
- Microsoft Azure can be used with the Windows Azure SDK for PHP.[278]
Numerous configuration options are supported, affecting both core PHP features and extensions.[279][280] Configuration file php.ini
is searched for in different locations, depending on the way PHP is used.[281] The configuration file is split into various sections,[282] while some of the configuration options can be also set within the web server configuration.[283]
Use
PHP is a general-purpose scripting language that is especially suited to
Originally designed to create dynamic
.The
For specific and more advanced usage scenarios, PHP offers a well-defined and documented way for writing custom extensions in C or C++.[288][289][290][291][292][293][294][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.[295][296] 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.[297]
PHP received mixed reviews due to lacking support for
A command line interface, php-cli, and two ActiveX Windows Script Host scripting engines for PHP have been produced.[citation needed]
Popularity and usage statistics
PHP is used for
As of January 2013[update], PHP was used in more than 240 million websites (39% of those sampled) and was installed on 2.1 million web servers.[307]
As of 23 August 2024[update] (nine months after PHP 8.3's release), PHP is used as the server-side programming language on 75.9% of websites where the language could be determined; PHP 7 is the most used version of the language with 52% of websites using PHP being on that version, while 33.9% use PHP 8, 13.9% use PHP 5 and 0.2% use PHP 4.[20]
33.9%
52%
13.9%
0.2%
|
Security
In 2019, 11% of all vulnerabilities listed by the National Vulnerability Database were linked to PHP;[312] 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).[313] 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.[314][315][316]
Third-party projects such as Suhosin[317] and Snuffleupagus [318] 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_globals
[319] 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.[320]
Another example for the potential runtime-settings vulnerability comes from failing to disable PHP execution (for example by using the engine
configuration directive)[321] for the directory where uploaded files are stored; enabling it can result in the execution of malicious code embedded within the uploaded files.[322][323][324] The best practice is to either locate the image directory outside of the document root available to the web server and serve it via an intermediary script or disable PHP execution for the directory which stores the uploaded files.[citation needed]
Also, enabling the dynamic loading of PHP extensions (via enable_dl
configuration directive)
Implied
]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
.[331][332]
Cryptographic Security
PHP includes rand()
[333] and mt_rand()[334]
functions 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.[335]
There are two attacks that can be performed over PHP entropy sources: "seed attack" and "state recovery attack".[citation needed] 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.[336] In combination with a "birthday attack" this can lead to serious security vulnerabilities.[citation needed]
Long Term Support
The PHP development team provides official bug fixes for 2 years following release of each minor version, followed by another year where only security fixes are released.[58] 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 others[337][338]
See also
- Comparison of programming languages
- List of Apache–MySQL–PHP packages
- List of PHP accelerators
- List of PHP editors
- PEAR (PHP Extension and Application Repository)
- PHP accelerator
- Template processor
- XAMPP (free and open-source cross-platform web server solution stack package)
- Zend Server
References
- ^ a b Lerdorf, Rasmus (June 8, 1995). "Announce: Personal Home Page Tools (PHP Tools)". Retrieved 7 June 2011.
- ^ a b Lerdorf, Rasmus (2007-04-26). "PHP on Hormones – history of PHP presentation by Rasmus Lerdorf given at the MySQL Conference in Santa Clara, California". The Conversations Network. Archived from the original on 2019-01-06. Retrieved 2009-12-11.
- ^ "PHP: News Archive - 2024". www.php.net.
- ^ "PHP: News Archive - 2024". www.php.net.
- ^ "PHP: Function arguments – Manual". secure.php.net.
- ^ "PHP: Release Archives (museum)". museum.php.net.
- ^ "PHP: Preface – Manual".
- ^ Stogov, Dmitry [@dstogov] (2015-12-04). "It's not a secret that some #PHP7 optimization ideas came from HHVM, LuaJIT and V8. Thank you @HipHopVM @SaraMG. #php7thankyou" (Tweet) – via Twitter.
- ^ "PHP: Hypertext Preprocessor". www.php.net. Retrieved 2020-02-12.
- ^ a b Krill, Paul (2013-11-18). "Believe the hype: PHP founder backs Facebook's HipHop technology". InfoWorld. Retrieved 2022-10-13.
- ^ "Announce: Personal Home Page Tools (PHP Tools)". groups.google.com. Retrieved 2022-11-03.
- ^ a b c d e f g h i "History of PHP and related projects". The PHP Group. Retrieved 2008-02-25.
- ^ a b "History of PHP". php.net.
- ISBN 978-1-4302-6284-8.
- ^ PHP Manual: Preface, www.php.net.
- ^ "Introduction: What can PHP do?". PHP Manual. Retrieved 2009-03-05.
- ^ helicopter: Port of node-ar-drone which allows user to control a Parrot AR Drone over PHP: jolicode/php-ar-drone, JoliCode, 2019-01-11, retrieved 2019-02-23
- ^ a b "Embedding PHP in HTML". O'Reilly. 2001-05-03. Archived from the original on 2008-02-19. Retrieved 2008-02-25.
- ^ "PHP: Unsupported Branches". www.php.net.
- ^ a b c "Usage statistics of PHP for websites". W3Techs – World Wide Web Technology Surveys. W3Techs. Retrieved 23 August 2024.
- ^ Lerdorf, Rasmus (2012-07-20). "I wonder why people keep writing that PHP was ever written in Perl. It never was. #php". Twitter. Retrieved 2014-09-04.
- ^ Lerdorf, Rasmus (2007-04-26). "PHP on Hormones". The Conversations Network. Archived from the original (mp3) on 2019-01-06. Retrieved 2009-06-22.
- ^ Lerdorf, Rasmus (2007). "Slide 3". slides for 'PHP on Hormones' talk. The PHP Group. Retrieved 2009-06-22.
- ^ Lerdorf, Rasmus (1995-06-08). "Announce: Personal Home Page Tools (PHP Tools)". Newsgroup: comp.infosystems.www.authoring.cgi. Retrieved 2006-09-17.
- ^ "Rasmus Lerdorf, Senior Technical Yahoo: PHP, Behind the Mic". 2003-11-19. Archived from the original on 2013-07-28.
- ^ Alshetwi, A.B.; Rahmat, R. A. A. O.; Borhan, M. N.; Ismael, S.; Ali, A.; Irtema, H. I. M.; Alfakhria, A. Y. (2018). "Web-Based Expert System for Optimizing of Traffic Road in Developing Countries". Retrieved 13 Feb 2024.
- ^ "Problems with PHP". Retrieved 20 December 2010.
- ^ "php.internals: Re: Function name consistency". news.php.net. 2013-12-28. Retrieved 2014-02-09.
- ^ Rasmus Lerdorf (Dec 16, 2013). "Re: Flexible function naming". Newsgroup: php.internals. Retrieved December 26, 2013.
- ^ "PHP – Acronym Meaning Vote". PHP.net. Archived from the original on August 15, 2000.
- ^ "Zend Engine version 2.0: Feature Overview and Design". Zend Technologies Ltd. Archived from the original on 2006-07-19. Retrieved 2006-09-17.
- ^ "php.net 2007 news archive". The PHP Group. 2007-07-13. Retrieved 2008-02-22.
- ^ Kerner, Sean Michael (2008-02-01). "PHP 4 is Dead—Long Live PHP 5". InternetNews. Archived from the original on 2018-08-06. Retrieved 2018-12-16.
- ^ Trachtenberg, Adam (2004-07-15). "Why PHP 5 Rocks!". O'Reilly. Archived from the original on 2016-03-31. Retrieved 2008-02-22.
- ^ "Late Static Binding in PHP". Digital Sandwich. 2006-02-23. Retrieved 2008-03-25.
- ^ "Static Keyword". The PHP Group. Retrieved 2008-03-25.
- ^ "GoPHP5". Archived from the original on 2011-07-17.
- ^ "PHP projects join forces to Go PHP 5" (PDF). GoPHP5 Press Release. Archived from the original (PDF) on 2019-08-04. Retrieved 2008-02-23.
- ^ "GoPHP5". GoPHP5. Archived from the original on 2011-04-27. Retrieved 2008-02-22.
- ^ "PHP Installation and Configuration". php.net. Retrieved 2013-10-29.
- ^ "PHP for Windows: Binaries and sources releases (5.3)". php.net. Retrieved 2013-10-29.
- ^ "PHP for Windows: Binaries and sources releases (5.4)". php.net. Retrieved 2013-10-29.
- ^ "PHP for Windows: Binaries and sources releases (5.5)". php.net. Retrieved 2013-10-29.
- ^ "PHP: Supported Versions".
- ^ "Types: Strings (PHP Manual)". PHP.net. Retrieved 2013-09-22.
- ^ "Details of the String Type (PHP Manual)". PHP.net. Retrieved 2021-09-22.
- ^ Andrei Zmievski (2005-08-10). "PHP Unicode support design document" (Mailing list). Retrieved 2014-02-09.
- ^ "PHP 5.5 or 6.0". Retrieved 2014-02-09.
- ^ Andrei Zmievski (2011-04-22). "The Good, the Bad, and the Ugly: What Happened to Unicode and PHP 6". Retrieved 2014-02-09.
- ^ Rasmus Lerdorf (2010-03-11). "PHP 6" (Mailing list). Retrieved 2014-02-07.
- ^ "The Neverending Muppet Debate of PHP 6 v PHP 7". Archived from the original on 2015-11-19. Retrieved 2015-11-19.
- ^ "RFC: Name of Next Release of PHP". php.net. 2014-07-07. Retrieved 2014-07-15.
- ^ "Re: [PHP-DEV] [VOTE] [RFC] Name of Next Release of PHP (again)". 2014-07-30. Retrieved 2014-07-30.
- ^ "phpng: Refactored PHP Engine with Big Performance Improvement". news.php.net.
- ^ "PHP: rfc:phpng". php.net. Retrieved 16 December 2014.
- ^ a b "PHP: phpng". php.net. Retrieved 2014-07-15.
- ^ "Merge branch 'ZendEngine3'". github.com. 2014-12-05. Retrieved 2014-12-05.
- ^ a b c d "PHP: Release Process". 2011-06-20. Retrieved 2013-10-06.
- ^ a b "PHP RFC: Exceptions in the engine (for PHP 7)". php.net. Retrieved 2015-05-21.
- ^ a b "PHP RFC: Uniform Variable Syntax". php.net. 2014-05-31. Retrieved 2014-07-30.
- ^ "Online PHP editor | output for udRhX". 3v4l.org.
- ^ "PHP RFC: Fix "foreach" behavior". php.net. Retrieved 2015-05-21.
- ^ "PHP RFC: Constructor behaviour of internal classes". php.net. Retrieved 2015-05-21.
- ^ "PHP RFC: Removal of dead or not yet PHP7 ported SAPIs and extensions". php.net. Retrieved 2015-05-21.
- ^ "PHP RFC: Fix list() behavior inconsistency". php.net. Retrieved 2015-05-21.
- ^ "PHP RFC: Remove alternative PHP tags". php.net. Retrieved 2015-05-21.
- ^ "PHP RFC: Make defining multiple default cases in a switch a syntax error". php.net. Retrieved 2015-05-21.
- ^ "PHP RFC: Remove hex support in numeric strings". php.net. Retrieved 2015-05-21.
- ^ a b "PHP RFC: Integer Semantics". php.net. Retrieved 2015-05-21.
Making NaN and Infinity always become zero when cast to integer means more cross-platform consistency, and is also less surprising than what is currently produces
- ^ "PHP RFC: ZPP Failure on Overflow". php.net. Retrieved 2015-05-21.
- ^ a b c "RFC: Return Types". php.net. 2015-01-27. Retrieved 2015-01-28.
- ^ a b c d e f "RFC: Scalar Type Declarations". php.net. 2015-03-16. Retrieved 2015-03-17.
- ^ a b c d e f g h i j k l Brent. "What's new in PHP 8". Stitcher. Retrieved 22 September 2020.
- ^ a b "PHP 8 Released". PHP. Retrieved 27 November 2020.
- ^ a b "PHP: rfc:jit". wiki.php.net. Retrieved 2019-04-05.
- ^ Brent. "PHP 8: JIT performance in real-life web applications". Stitcher.io. Retrieved 4 October 2020.
- ^ Rethams, Derick. "PHP 8: A Quick Look at JIT".
- ^ a b Popov, Nikita (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.
- ^ Daniele, Carlo (25 May 2020). "What's New in PHP 8 (Features, Improvements, and the JIT Compiler)". Kinsta. Retrieved 24 December 2020.
- ^ Redmond, Paul (15 July 2020). "Match Expression is Coming to PHP 8". Laravel News. Retrieved 4 October 2020.
- ^ "PHP 8.0: Match Expressions". PHP Watch. Retrieved 4 October 2020.
- ^ Barnes, Eric (27 November 2020). "PHP 8 is now Released!". Laravel News. Retrieved 24 December 2020.
- ^ a b "PHP RFC: throw expression". wiki.php.net. Retrieved 14 August 2020.
- ^ a b "PHP RFC: Nullsafe operator". wiki.php.net. Retrieved 14 August 2020.
- ^ Roose, Brent. "PHP 8: Constructor property promotion". Retrieved 30 April 2024.
- ^ a b "PHP: rfc:weakrefs". wiki.php.net. Retrieved 2019-04-05.
- ^ Merchant, Amit (13 June 2020). "These new string functions are coming in PHP 8". Amit Merchant. Retrieved 4 October 2020.
- ^ Popov, Nikita. "Call for participation: Annotating internal function argument and return types". Externals. Retrieved 19 November 2020.
- ^ "PHP 8 ChangeLog". PHP.net. Retrieved 2024-01-05.
- ^ "PHP: PHP 8.1.0 Release Announcement". PHP.net. Retrieved 2024-01-05.
- ^ "PHP 8 ChangeLog". PHP.net. Retrieved 2024-01-05.
- ^ "PHP: PHP 8.2.0 Release Announcement". PHP.net. Retrieved 2024-01-05.
- ^ a b c d e f g h i j k l "Unsupported Branches". php.net. Retrieved 2019-07-31.
- ^ "PHP 4.0.0 Released". Retrieved 25 October 2020.
- ^ a b c d "PHP: PHP 4 ChangeLog". The PHP Group. 2008-01-03. Retrieved 2008-02-22.
- ^ "PHP 4.1.0 Release Announcement". Retrieved 25 October 2020.
- ^ "PHP 4.2.0 Release Announcement". Retrieved 25 October 2020.
- ^ "PHP 4.3.0 Release Announcement". Retrieved 25 October 2020.
- ^ "Using PHP from the command line". PHP Manual. The PHP Group. Retrieved 2009-09-11.
- ^ "PHP 4.4.0 Release Announcement". Retrieved 25 October 2020.
- ^ "PHP 4.4.0 Release Announcement". PHP Mannual. The PHP Group. Retrieved 2013-11-24.
- ^ "PHP 5.0.0 Released!". Retrieved 25 October 2020.
- ^ a b c "PHP: PHP 5 ChangeLog". The PHP Group. 2007-11-08. Retrieved 2008-02-22.
- ^ "PHP 5.1.0 Release Announcement". Retrieved 25 October 2020.
- ^ "PHP manual: PDO". The PHP Group. 2011-11-15. Retrieved 2011-11-15.
- ^ "PHP 5.2.0 Release Announcement". Retrieved 25 October 2020.
- ^ "PHP 5.3.0 Release Announcement". Retrieved 25 October 2020.
- ^ "PHP 5.4.0 Release Announcement". Retrieved 25 October 2020.
- ^ "Built-in web server". Retrieved March 26, 2012.
- ^ "PHP 5.5.0 Release Announcement". Retrieved 25 October 2020.
- ^ a b c d "Supported Versions". php.net. Retrieved 2017-12-13.
- ^ "PHP 5.5.0 changes". php.net. Retrieved 2015-03-03.
- ^ "PHP 5.6.0 Release Announcement". Retrieved 25 October 2020.
- ^ "Migrating from PHP 5.5.x to PHP 5.6.x". php.net. Retrieved 2014-03-24.
- ^ "Resetting PHP 6".
There have been books on the shelves purporting to cover PHP 6 since at least 2008. But, in March 2010, the PHP 6 release is not out – in fact, it is not even close to out. Recent events suggest that PHP 6 will not be released before 2011 – if, indeed, it is released at all.
- ^ "PHP 7 moves full speed ahead". 2014-10-31.
Recent versions of PHP have been part of the 5.x release series, but there will be no PHP 6. "We're going to skip [version] 6, because years ago, we had plans for a 6, but those plans were very different from what we're doing now," Gutmans said. Going right to version 7 avoids confusion.
- ^ "News Archive – 2018: PHP 7.2.9 Released". php.net. 2018-08-16. Retrieved 2018-08-16.
- ^ "PHP: rfc:size_t_and_int64_next". php.net. Retrieved 16 December 2014.
- ^ "PHP: rfc:abstract_syntax_tree". php.net. Retrieved 16 December 2014.
- ^ "PHP: rfc:closure_apply". php.net. Retrieved 16 December 2014.
- ^ "PHP: rfc:integer_semantics". php.net. Retrieved 16 December 2014.
- ^ "PHP: rfc:isset_ternary". php.net. Retrieved 16 December 2014.
- ^ "RFC: Unicode Codepoint Escape Syntax". 2014-11-24. Retrieved 2014-12-19.
- ^ "Combined Comparison (Spaceship) Operator". php.net. Retrieved 2015-05-21.
- ^ "PHP RFC: Generator Delegation". php.net. Retrieved 2015-05-21.
- ^ "PHP RFC: Anonymous Classes". php.net. Retrieved 2015-05-21.
- ^ "PHP RFC: Easy User-land CSPRNG". php.net. Retrieved 2015-05-21.
- ^ "PHP RFC: Group Use Declarations". php.net. Retrieved 2015-05-21.
- ^ "PHP: rfc:iterable". php.net. 2016-06-10. Retrieved 2023-06-30.
- ^ "PHP: rfc:nullable_types". php.net. 2014-04-10. Retrieved 2023-06-30.
- ^ "PHP: rfc:void_return_type". php.net. 2015-11-09. Retrieved 2015-11-14.
- ^ "PHP: rfc:class_constant_visibility". php.net. 2015-10-27. Retrieved 2015-12-08.
- ^ "PHP: rfc:short_list_syntax". php.net. 2016-04-07. Retrieved 2023-06-30.
- ^ "PHP: rfc:multiple-catch". php.net. 2016-03-06. Retrieved 2023-06-30.
- ^ "PHP: rfc:object-typehint". wiki.php.net.
- ^ "PHP: rfc:libsodium". wiki.php.net.
- ^ "PHP: rfc:allow-abstract-function-override". wiki.php.net.
- ^ "PHP: rfc:parameter-no-type-variance". wiki.php.net.
- ^ "PHP: todo:php73". wiki.php.net.
- ^ "PHP: rfc:flexible_heredoc_nowdoc_syntaxes". wiki.php.net.
- ^ "PHP: rfc:list_reference_assignment". wiki.php.net.
- ^ "PHP: rfc:pcre2-migration". wiki.php.net.
- ^ "PHP: hrtime – Manual". php.net.
- ^ "PHP 7.4.0 Released!". php.net. Retrieved 2019-11-28.
- ^ "PHP: rfc:typed_properties_v2". wiki.php.net. Retrieved 2019-04-04.
- ^ "PHP: rfc:preload". wiki.php.net. Retrieved 2019-04-04.
- ^ "PHP: rfc:null_coalesce_equal_operator". wiki.php.net. Retrieved 2019-04-04.
- ^ "PHP: rfc:improve-openssl-random-pseudo-bytes". wiki.php.net. Retrieved 2019-04-04.
- ^ "PHP: rfc:ffi". wiki.php.net. Retrieved 2019-04-05.
- ^ "PHP: rfc:permanent_hash_ext". wiki.php.net. Retrieved 2019-04-05.
- ^ "PHP: rfc:password_registry". wiki.php.net. Retrieved 2019-04-05.
- ^ "PHP: rfc:mb_str_split". wiki.php.net. Retrieved 2019-04-05.
- ^ "PHP: rfc:reference_reflection". wiki.php.net. Retrieved 2019-04-05.
- ^ "PHP: rfc:deprecate-and-remove-ext-wddx". wiki.php.net. Retrieved 2019-04-05.
- ^ "PHP: rfc:custom_object_serialization". wiki.php.net. Retrieved 2019-04-05.
- ^ "PHP: Supported Versions". php.net. Retrieved 2023-11-26.
- ^ "PHP: rfc:negative_array_index". wiki.php.net. Retrieved 2019-04-05.
- ^ "PHP RFC: Validation for abstract trait methods". wiki.php.net. Retrieved 14 August 2020.
- ^ "PHP RFC: Saner string to number comparisons". wiki.php.net. Retrieved 14 August 2020.
- ^ "PHP RFC: Saner numeric strings". wiki.php.net. Retrieved 14 August 2020.
- ^ "PHP RFC: Stricter type checks for arithmetic/bitwise operators". wiki.php.net. Retrieved 14 August 2020.
- ^ "PHP RFC: Reclassifying engine warnings". wiki.php.net. Retrieved 14 August 2020.
- ^ "PHP: rfc:consistent_type_errors". wiki.php.net. Retrieved 2019-04-05.
- ^ "PHP: rfc:lsp_errors". wiki.php.net. Retrieved 2019-05-26.
- ^ "PHP RFC: Locale-independent float to string cast". wiki.php.net. Retrieved 14 August 2020.
- ^ "PHP RFC: Variable Syntax Tweaks". wiki.php.net. Retrieved 14 August 2020.
- ^ "PHP RFC: Attributes V2". wiki.php.net. Retrieved 14 August 2020.
- ^ "PHP RFC: Attribute Amendments". wiki.php.net. Retrieved 14 August 2020.
- ^ "PHP RFC: Shorter Attribute Syntax". wiki.php.net. Retrieved 2020-06-20.
- ^ "PHP RFC: Shorter Attribute Syntax Change". wiki.php.net. Retrieved 14 August 2020.
- ^ "PHP RFC: Named Arguments". wiki.php.net. Retrieved 14 August 2020.
- ^ "PHP RFC: Match expression v2". wiki.php.net. Retrieved 14 August 2020.
- ^ "PHP RFC: Constructor Property Promotion". wiki.php.net. Retrieved 14 August 2020.
- ^ "PHP RFC: Union Types 2.0". wiki.php.net. Retrieved 14 August 2020.
- ^ "PHP RFC: Mixed Type v2". wiki.php.net. Retrieved 14 August 2020.
- ^ "PHP RFC: Static return type". wiki.php.net. Retrieved 14 August 2020.
- ^ "PHP RFC: non-capturing catches". wiki.php.net. Retrieved 14 August 2020.
- ^ Andre, Tyson. "PHP RFC: Always available JSON extension". PHP. Retrieved 25 October 2020.
- ^ "PHP: todo:php81". wiki.php.net. Retrieved 2022-06-16.
- ^ "PHP RFC: Explicit octal integer literal notation". wiki.php.net. Retrieved 2020-11-25.
- ^ "PHP RFC: Enumerations". wiki.php.net. Retrieved 2021-03-25.
- ^ "PHP: rfc:readonly_properties_v2". wiki.php.net. Retrieved 2021-11-26.
- ^ "PHP: rfc:first_class_callable_syntax". wiki.php.net. Retrieved 2021-11-26.
- ^ "PHP: rfc:new_in_initializers". wiki.php.net. Retrieved 2021-11-26.
- ^ "PHP: rfc:pure-intersection-types". wiki.php.net. Retrieved 2021-11-26.
- ^ "PHP: rfc:noreturn_type". wiki.php.net. Retrieved 2021-11-26.
- ^ "PHP: rfc:final_class_const". wiki.php.net. Retrieved 2021-11-26.
- ^ "PHP: rfc:fibers". wiki.php.net. Retrieved 2021-11-26.
- ^ "PHP: todo:php82". wiki.php.net. Retrieved 2022-06-16.
- ^ "PHP: rfc:readonly_classes". wiki.php.net. Retrieved 2022-06-16.
- ^ "PHP: rfc:null-false-standalone-types". wiki.php.net. Retrieved 2022-06-16.
- ^ "PHP: rfc:true-type". wiki.php.net. Retrieved 2022-06-16.
- ^ "PHP: rfc:strtolower-ascii". wiki.php.net. Retrieved 2022-06-16.
- ^ "PHP: rfc:dnf_types". wiki.php.net. Retrieved 2023-02-07.
- ^ "PHP: rfc:constants_in_traits". wiki.php.net. Retrieved 2023-02-07.
- ^ "PHP 8.3.0 Released!". php.net. 23 November 2023. Retrieved 24 November 2023.
- ^ "PHP: rfc:typed_class_constants". wiki.php.net. Retrieved 2023-12-17.
- ^ "PHP: rfc:dynamic_class_constant_fetch". wiki.php.net. Retrieved 2023-12-17.
- ^ "PHP: rfc:marking_overriden_methods". wiki.php.net. Retrieved 2023-12-17.
- ^ "PHP: rfc:readonly_amendments". wiki.php.net. Retrieved 2023-12-17.
- ^ "PHP: rfc:json_validate". wiki.php.net. Retrieved 2023-12-17.
- ^ "PHP: rfc:randomizer_additions". wiki.php.net. Retrieved 2023-12-17.
- ^ "PHP: todo: php84". php.net. 26 March 2024. Retrieved 26 March 2024.
- ^ "PHP: ElePHPant". 4 Oct 2014. Retrieved 4 Oct 2014.
- ^ "Redirecting…". wwphp-fb.github.io.
- ^ "The PHP Mascot's Birth - Creator Of The elePHPant Vincent Pontier Reveals The True Story!". 7php.com. 2014-01-06.
- ^ "ElePHPant". PHP.earth. Retrieved 2024-02-13.
- ^ "PHP: ElePHPant". www.php.net.
- ^ "A Field Guide to Elephpants". afieldguidetoelephpants.net.
- ^ "tags – Manual". php.net. Retrieved 2014-02-17.
- ^ "PHP: Basic syntax". The PHP Group. Retrieved 2008-02-22.
- ^ "Basic Coding Standard". PHP Framework Interoperability Group. Retrieved 2016-01-03.
- ^ "echo – Manual". php.net. Retrieved 2014-02-17.
- ^ "Description of core php.ini directives – Manual". php.net. 2002-03-17. Retrieved 2014-02-17.
- ^ "Your first PHP-enabled page". The PHP Group. Retrieved 2008-02-25.
- ^ Bray, Tim; et al. (26 November 2008). "Processing Instructions". Extensible Markup Language (XML) 1.0 (Fifth Edition). W3C. Retrieved 2009-06-18.
- ^ "Variables". The PHP Group. Retrieved 2008-03-16.
- ^ "Instruction separation". The PHP Group. Retrieved 2008-03-16.
- ^ "Comments". The PHP Group. Retrieved 2008-03-16.
- ^ "Integers in PHP, running with scissors, and portability". MySQL Performance Blog. March 27, 2007. Retrieved 2007-03-28.
- ^ a b c d e "Types". The PHP Group. Retrieved 2008-03-16.
- ^ "Strings". The PHP Group. Retrieved 2008-03-21.
- ^ "SPL – StandardPHPLibrary". PHP.net. March 16, 2009. Retrieved 2009-03-16.
- ^ a b "User-defined functions (PHP manual)". php.net. 2014-07-04. Retrieved 2014-07-07.
- ^ a b "Variable functions (PHP manual)". php.net. 2014-07-04. Retrieved 2014-07-07.
- ^ "create_function() (PHP manual)". php.net. 2022-04-06. Retrieved 2022-05-04.
- ^ "Anonymous functions (PHP manual)". php.net. 2014-07-04. Retrieved 2014-07-07.
- ^ "Arrow Functions (PHP manual)". php.net. Retrieved 2021-01-25.
- ^ Christian Seiler; Dmitry Stogov (2008-07-01). "Request for Comments: Lambda functions and closures". php.net. Retrieved 2014-07-07.
- ^ a b "PHP 5 Object References". mjtsai.com. Retrieved 2008-03-16.
- ^ "Classes and Objects (PHP 5)". The PHP Group. Retrieved 2008-03-16.
- ^ "Object cloning". The PHP Group. Retrieved 2008-03-16.
- ^ "Visibility (PHP Manual)". theserverpages.com. 2005-05-19. Archived from the original on 2010-09-24. Retrieved 2010-08-26.
- ^ "How do computer languages work?". Archived from the original on 2011-07-16. Retrieved 2009-11-04.
- ISBN 1590595521.
- ^ "[VOTE] Integrating Zend Optimizer+ into the PHP distribution". news.php.net. Retrieved 2013-03-08.
- ^ "Alternative PHP Cache". PHP.net. Archived from the original on 2013-11-15. Retrieved 2013-09-21.
- ^ "We are the 98.5% (and the 16%) « HipHop Virtual Machine". hhvm.com. December 2013. Retrieved 2014-02-23.
- ^ "The Definitive PHP 5.6, 7.0, 7.1, 7.2 & 7.3 Benchmarks (2019)". 2019-01-14. Retrieved 2019-04-19.
- ^ Krill, Paul (2017-09-20). "Forget PHP! Facebook's HHVM engine switches to Hack instead". InfoWorld. Retrieved 2019-02-06.
- ^ "Announcement on GitHub removing HPHPc support". GitHub. Retrieved 2013-05-24.
- ^ "The PHP License, version 3.01". Retrieved 2010-05-20.
- ^ "GPL-Incompatible, Free Software Licenses". Various Licenses and Comments about Them. Free Software Foundation. Retrieved 2011-01-03.
- ^ "PHP: Function and Method listing – Manual". The PHP Group. Retrieved 2015-01-14.
- ^ "Introduction – Manual". php.net. 2013-06-07. Retrieved 2013-06-13.
- ^ Darryl Patterson (5 August 2004). "Simplify Business Logic with PHP DataObjects — O'Reilly Media". ibm.com. Archived from the original on 16 December 2014. Retrieved 16 December 2014.
- ^ "IBM — United States". Retrieved 16 December 2014.
- ^ "Five common PHP database problems". ibm.com. 2006-08-01. Retrieved 2013-06-13.
- ^ "IBM Redbooks — Developing PHP Applications for IBM Data Servers". redbooks.ibm.com. Retrieved 16 December 2014.
- ^ "php[architect] Magazine - The Journal for PHP Programmers". www.phparch.com.
- ^ Krill, Paul (19 October 2005). "PHP catching on at enterprises, vying with Java". InfoWorld. Archived from the original on 13 July 2014.
- ^ "Cross Reference: /PHP_5_4/ext/standard/". php.net. Archived from the original on 16 March 2012. Retrieved 16 December 2014.
- ^ "Developing Custom PHP Extensions". devnewz.com. 2002-09-09. Archived from the original on 2008-02-18. Retrieved 2008-02-25.
- ^ "Why Zephir?". zephir-lang.com. 2015-10-20. Retrieved 2015-12-14.
- ^ "PHP Credits". Retrieved 2018-12-16.
- ^ "Learn PHP Via PHP Training and PHP Certification". www.zend.com. Retrieved 2020-11-16.
- ^ Walker, James (2021-12-13). "What the New PHP Foundation Means for PHP's Future". How-To Geek. Retrieved 2023-11-26.
- ^ "The New Life of PHP – The PHP Foundation | The PhpStorm Blog". The JetBrains Blog. 22 November 2021. Retrieved 2022-06-16.
- ^ "The PHP Foundation: Impact and Transparency Report 2022". thephp.foundation. Retrieved 2023-11-27.
- ^ Pronskiy, Roman (2024-02-26). "The PHP Foundation: Impact and Transparency Report 2023". The PHP Foundation. Retrieved 2024-04-01.
- ^ Anderson, Tim. "PHP Foundation formed to fund core developers". www.theregister.com. Retrieved 2023-12-05.
- ^ "Programming languages: This old favourite is gaining popularity again". ZDNET. Retrieved 2023-12-05.
- ^ "PHP 8.1 Released With Enums, Read-Only Properties and Fibers". www.i-programmer.info. Retrieved 2023-12-05.
- ^ "It's time for the PHP Foundation to #StopBreakingPHP". trongate.io. Retrieved 2023-11-27.
- ^ "WordPress 6.4 PHP Compatibility". Make WordPress Hosting. 2023-11-16. Retrieved 2023-11-27.
- ^ "PHP". Sovereign Tech Fund. Retrieved 2024-05-26.
- ^ a b "General Installation Considerations". php.net. Retrieved 2013-09-22.
- ^ "News Archive: PHP 5.3.3 Released!". php.net. 2010-07-22.
- ^ "FastCGI Process Manager (FPM)". php.net. Retrieved 2013-09-22.
- ^ "Command line usage: Introduction". php.net. Retrieved 2013-09-22.
- ^ "Command line usage: Differences to other SAPIs". php.net. Retrieved 2013-09-22.
- ^ a b "General Installation Considerations". php.net. Retrieved 2013-09-22.
- ^ "PHP: Apache 2.x on Microsoft Windows". php.net. Archived from the original on 2013-09-26. Retrieved 2013-09-22.
- ^ "Command line usage: Introduction". php.net. Retrieved 2013-09-22.
- ^ "Installing PHP-GTK 2". php.net. Archived from the original on 2013-12-12. Retrieved 2013-09-22.
- ^ "AWS SDK for PHP". aws.amazon.com. Retrieved 2014-03-06.
- ^ "Windows Azure SDK for PHP — Interoperability Bridges and Labs Center". interoperabilitybridges.com. Archived from the original on 2014-03-20. Retrieved 2014-03-06.
- ^ "Runtime configuration: Table of contents". php.net. Retrieved 2013-09-22.
- ^ "php.ini directives: List of php.ini directives". php.net. Retrieved 2013-09-22.
- ^ "Runtime configuration: The configuration file". PHP.net. Retrieved 2013-09-22.
- ^ "php.ini directives: List of php.ini sections". PHP.net. Retrieved 2013-09-22.
- ^ "Runtime configuration: Where a configuration setting may be set". PHP.net. Retrieved 2013-09-22.
- ^ "PHP Manual Image Processing and GD;". php.net. Retrieved 2011-04-09.
- ^ "PHP Server-Side Scripting Language". Indiana University. 2007-04-04. Archived from the original on 2016-01-21. Retrieved 2008-02-25.
- ^ "JavaServer Pages Technology — JavaServer Pages Comparing Methods for Server-Side Dynamic Content White Paper". Sun Microsystems. Retrieved 2008-02-25.
- ^ "Five simple ways to tune your LAMP application". IBM. 2011-01-25.
- ^ "PHP at the core: Extension structure". PHP.net. Archived from the original on 2013-09-26. Retrieved 2013-09-22.
- ^ "PHP at the core: The "counter" Extension – A Continuing Example". PHP.net. Archived from the original on 2013-09-26. Retrieved 2013-09-22.
- Zend Technologies. 2005-03-01. Archived from the originalon 2013-09-24. Retrieved 2013-09-22.
- Zend Technologies. 2005-06-06. Archived from the originalon 2013-09-26. Retrieved 2013-09-22.
- Zend Technologies. 2005-06-06. Archived from the originalon 2013-09-26. Retrieved 2013-09-22.
- Zend Technologies. 2006-05-12. Archived from the originalon 2013-09-26. Retrieved 2013-09-22.
- Zend Technologies. 2009-04-22. Archived from the originalon 2013-09-20. Retrieved 2013-09-22.
- ^ "Extending PHP with C++?". Stack Overflow. Retrieved 2013-09-22.
- ^ "How can I use C++ code to interact with PHP?". Stack Overflow. Retrieved 2013-09-22.
- ISBN 978-0-672-32704-9.
- ^ "Request #46919: Multithreading". PHP.net. Retrieved 2013-09-22.
- ^ "pthreads: Introduction (PHP Manual)". PHP.net. Retrieved 2013-09-22.
- ^ "PECL :: Package :: pthreads". pecl.php.net. Retrieved 2014-02-09.
- ^ "Manual:Installation requirements#PHP". MediaWiki. 2010-01-25. Retrieved 2010-02-26.
PHP is the programming language in which MediaWiki is written [...]
- ^ "About WordPress". Retrieved 2010-02-26.
WordPress was [...] built on PHP
- ^ Kempkens, Alex. "Joomla! — Content Management System to build websites & apps".
- ^ "PHP and Drupal". Drupal.org. 16 September 2007. Archived from the original on 2010-02-08. Retrieved 2010-06-13.
- ^ "About". Moodle.org. Archived from the original on 2010-01-11. Retrieved 2009-12-20.
- ^ "Server requirements of SilverStripe". Archived from the original on 28 November 2014. Retrieved 13 October 2014.
SilverStripe requires PHP 5.3.2+
- ^ Ide, Andy (2013-01-31). "PHP just grows & grows". Retrieved 2013-04-01.
- ^ "Usage Statistics and Market Share of PHP Version 4 for Websites, August 2024". w3techs.com.
- ^ "Usage Statistics and Market Share of PHP Version 5 for Websites, August 2024". w3techs.com.
- ^ "Usage Statistics and Market Share of PHP Version 7 for Websites, August 2024". w3techs.com.
- ^ "Usage Statistics and Market Share of PHP Version 8 for Websites, August 2024". w3techs.com.
- ^ "National Vulnerability Database (NVD) Search Vulnerabilities Statistics". Retrieved 2019-11-22.
- ^ "Developer Meeting Notes, Nov. 2005".
- ^ "Taint mode decision, November 2007". Archived from the original on 2009-02-26.
- ^ "PHP: rfc:taint". wiki.php.net.
- ^ "Hardened-PHP Project". 2008-08-15. Archived from the original on 2019-02-24. Retrieved 2019-08-22.
- ^ "Snuffleupagus Documentation".
- ^ "Security: Using Register Globals". PHP Manual. PHP.net. Archived from the original on 2013-09-27. Retrieved 2013-09-22.
- ^ "Magic Quotes". PHP Manual. PHP.net. Archived from the original on 2014-02-08. Retrieved 2014-01-17.
- ^ "'engine' configuration directive". PHP: Runtime Configuration. PHP.net. Retrieved 2014-02-13.
- ^ "PHP Security Exploit With GIF Images". 2007-06-22. Archived from the original on 2013-09-27. Retrieved 2013-09-22.
- ^ "PHP security exploit with GIF images". PHP Classes blog. 2007-06-20. Retrieved 2013-09-22.
- ^ "Passing Malicious PHP Through getimagesize()". 2007-06-04. Archived from the original on 2013-09-21. Retrieved 2013-09-22.
- ^ "'enable_dl' configuration directive". PHP: Runtime Configuration. PHP.net. Retrieved 2014-02-13.
- ^ "PHP function reference: dl()". PHP.net. Retrieved 2013-09-22.
- ^ "My host won't fix their Trojan". WebHosting Talk. Retrieved 2013-09-22.
- ^ Raz0r (25 January 2013). "Simple Machines Forum <= 2.0.3 Admin Password Reset".
{{cite web}}
: CS1 maint: numeric names: authors list (link) - ^ Nibble Security. "TYPO3-SA-2010-020, TYPO3-SA-2010-022 EXPLAINED".
- ^ "Криптостойкость и небезопасное сравнение". ahack.ru (in Russian). Archived from the original on 4 July 2017.
{{cite web}}
: CS1 maint: unfit URL (link) - ^ Krawczyk, Pawel (2013). "Most common attacks on web applications". IPSec.pl. Archived from the original on 2015-04-15. Retrieved 2015-04-15.
- ^ Krawczyk, Pawel (2013). "So what are the "most critical" application flaws? On new OWASP Top 10". IPSec.pl. Retrieved 2015-04-15.
- ^ "PHP: Rand - Manual".
- ^ "PHP: Mt_rand - Manual".
- ^ "PHP: Random_int - Manual".
- ^ Argyros, George; Kiayias, Aggelos (10 August 2012). "I Forgot Your Password: Randomness Attacks Against PHP Applications". usenix.org. USENIX. Retrieved 19 April 2024.
- ^ "PHP Support for PHP 7.2 - 8.0 | PHP LTS | Zend by Perforce". Retrieved 2024-05-23.
- ^ "Pagely PHP Long Term Support Page". Pagely. Retrieved 2024-09-14.
Further reading
- Ford, Paul (June 11, 2015). "What is Code?". Bloomberg Businessweek.
What's the Absolute Minimum I Must Know About PHP?
External links
- Official website
- PHP at Curlie