Jump to content

PHP

Послушайте эту статью
(Перенаправлено с PHP (язык программирования) )
PHP
Парадигма Мультипарадигмальность : императивная , функциональная , объектно-ориентированная , процедурная , рефлексивная.
Разработано Расмус Лердорф
Разработчик Команда разработчиков PHP , Zend Technologies , PHP Foundation
Впервые появился 8 июня 1995 г .; 29 лет назад ( 1995-06-08 ) [1] [2]
Стабильная версия
8.3.9 / 2 июля 2024 г .; 22 дня назад ( 2024-07-02 ) [3]
Дисциплина набора текста Динамичный , слабый , постепенный [4]
Язык реализации C (в основном; некоторые компоненты C++ )
ТЫ Unix-подобные , Windows , macOS , IBM i , OpenVMS , IBM Z
Licensedual licensed GNU General Public License version 2 or any later version and PHP License for PHP versions 3.0 or earlier.[5] Only PHP License (most of Zend engine under Zend Engine License) for 3.01x and later versions.
Filename extensions.php,.phar,.phtml,.pht,.phps
Websitewww.php.net Edit this at Wikidata
Major implementations
Zend Engine, HHVM, PeachPie, Quercus, Parrot
Influenced by
Perl, C, C++, Java,[6] Tcl,[2] JavaScript[7]
Influenced
Hack, JSP, ASP, React JS

PHP — это общего назначения, язык сценариев предназначенный для веб-разработки . [8] Первоначально он был создан датско-канадским программистом Расмусом Лердорфом в 1993 году и выпущен в 1995 году. [9] [10] PHP Эталонная реализация теперь производится PHP Group. [11] Изначально PHP был аббревиатурой Personal Home Page . [12] [13] но теперь это означает рекурсивный инициализм PHP: Hypertext Preprocessor . [14]

PHP code is usually processed on a web server by a PHP interpreter implemented as a module, a daemon or a Common Gateway Interface (CGI) executable. On a web server, the result of the interpreted and executed PHP code—which may be any type of data, such as generated HTML or binary image data—would form the whole or part of an HTTP response. Various web template systems, web content management systems, and web frameworks exist that can be employed to orchestrate or facilitate the generation of that response. Additionally, PHP can be used for many programming tasks outside the web context, such as standalone graphical applications[15] and drone control.[16] PHP-код также может быть выполнен непосредственно из командной строки .

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

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

W3Techs reports that as of 23 May 2024 (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.[18][19]

History

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

Early history

[edit]

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

An example of the early PHP syntax:[22]

<!--include /text/header.html-->

<!--getenv HTTP_USER_AGENT-->
<!--if substr $exec_result Mozilla-->
  Hey, you are using Netscape!<p>
<!--endif-->

<!--sql database select * from table where user='$username'-->
<!--ifless $numentries 1-->
  Sorry, that record does not exist<p>
<!--endif exit-->
  Welcome <!--$user-->!<p>
  You have <!--$index:0--> credits left in your account.<p>

<!--include /text/footer.html-->

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

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

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

PHP 3 and 4

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

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

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

PHP 5

[edit]

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

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

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

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

PHP 6 and Unicode

[edit]

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

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

PHP 7

[edit]

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

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

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

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

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

PHP 8

[edit]

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

Just-in-time compilation

[edit]

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

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

Addition of the match expression

[edit]

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

Type changes and additions

[edit]

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

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

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

Syntax changes and additions

[edit]

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

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

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

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

Standard library changes and additions

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

Additional changes

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

PHP 8.1

[edit]

PHP 8.1 was released on November 25, 2021.[88] 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.[89]

PHP 8.2

[edit]

PHP 8.2 was released on December 8, 2022.[90] 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,[91] Sensitive Parameter value redaction, and a ton of other features.

Release history

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

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

Mascot

[edit]
The elePHPant, PHP mascot

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

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.[207] These are collectable and some of them are extremely rare.[208]

Syntax

[edit]
A "Hello, World" application in PHP 7.4 running on its built-in development server

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

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

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

<?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.[210][211] Conversely, there is no recommendation against the echo short tag <?=.[212] 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.[213][214][210] The purpose of all these delimiters is to separate PHP code from non-PHP content, such as JavaScript code or HTML markup.[215] 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.[216] This means that the resulting mixture of PHP code and other markups in the server-side file is itself well-formed XML.

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

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

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

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

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

Data types

[edit]

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

Floating-point numbers are also stored in a platform-specific range. They can be specified using floating-point notation, or two forms of scientific notation.[221] 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++.[221]

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

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

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.[221] PHP also supports strings, which can be used with single quotes, double quotes, nowdoc or heredoc syntax.[222]

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

Functions

[edit]

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

Custom functions may be defined by the developer:

function myAge(int $birthYear): string
{
    // calculate the age by subtracting the birth year from the current year.
    $yearsOld = date('Y') - $birthYear;

    // return the age in a descriptive string.
    return $yearsOld . ($yearsOld == 1 ? ' year' : ' years');
}

echo 'I am currently ' . myAge(1995) . ' old.';

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

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

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

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

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

function getAdder(int $x): Closure
{
    return fn(int $y): int => $x + $y;
}

$adder = getAdder(8);
echo $adder(2); // prints "10"
echo $adder(null); // throws an exception because an incorrect type was passed
$adder = getAdder([]); // would also throw an exception

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

PHP objects

[edit]

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

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

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

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.[233] Objects of the same type have access to each other's private and protected members even though they are not the same instance.[citation needed]

Example

[edit]

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

<?php

abstract class User
{
    protected string $name;

    public function __construct(string $name)
    {
        // make first letter uppercase and the rest lowercase
        $this->name = ucfirst(strtolower($name));
    }

    public function greet(): string
    {
        return "Hello, my name is " . $this->name;
    }

    abstract public function job(): string;
}

class Student extends User
{
    public function __construct(string $name, private string $course)
    {
        parent::__construct($name);
    }

    public function job(): string
    {
        return "I learn " . $this->course;
    }
}

class Teacher extends User
{
    public function __construct(string $name, private array $teachingCourses)
    {
        parent::__construct($name);
    }

    public function job(): string
    {
        return "I teach " . implode(", ", $this->teachingCourses);
    }
}

$students = [
    new Student("Alice", "Computer Science"),
    new Student("Bob", "Computer Science"),
    new Student("Charlie", "Business Studies"),
];

$teachers = [
    new Teacher("Dan", ["Computer Science", "Information Security"]),
    new Teacher("Erin", ["Computer Science", "3D Graphics Programming"]),
    new Teacher("Frankie", ["Online Marketing", "Business Studies", "E-commerce"]),
];

foreach ([$students, $teachers] as $users) {
    echo $users[0]::class . "s:\n";

    array_walk($users, function (User $user) {
        echo "{$user->greet()}, {$user->job()}\n";
    });
}

This program outputs the following:

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

Implementations

[edit]

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

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

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

  • HHVM (HipHop Virtual Machine) – developed at Facebook and available as open source, it converts PHP code into a high-level bytecode (commonly known as an intermediate language), which is then translated into x86-64 machine code dynamically at runtime by a just-in-time (JIT) compiler, resulting in up to 6× performance improvements.[238] However, since version 7.2 Zend has outperformed HHVM,[239] and HHVM 3.24 is the last version to officially support PHP.[240]
    • 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.[241]
  • Parrot – a virtual machine designed to run dynamic languages efficiently; the cross-translator Pipp transforms the PHP source code into the Parrot intermediate representation, which is then translated into the Parrot's bytecode and executed by the virtual machine.
  • PeachPie – a second-generation compiler to .NET Common Intermediate Language (CIL) bytecode, built on the Roslyn platform; successor of Phalanger, sharing several architectural components
  • Phalanger – compiles PHP into .Net Common Intermediate Language bytecode; predecessor of PeachPie
  • Quercus – compiles PHP into Java bytecode

Licensing

[edit]

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

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

Development and community

[edit]

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

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,[245][246][247][248][249][250][251] and even speech synthesis. Some of the language's core functions, such as those dealing with strings and arrays, are also implemented as extensions.[252] The PHP Extension Community Library (PECL) project is a repository for extensions to the PHP language.[253]

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

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

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

The PHP Foundation

[edit]
PHP
Формирование 22 ноября 2021 г .; 2 года назад ( 22.11.2021 )
Основатель Automattic , Laravel , Acquia , Zend , Частный упаковщик, Symfony , Craft CMS, Tideways, PrestaShop , JetBrains [257]
Веб-сайт https://thephp.foundation

26 ноября 2021 года блог JetBrains объявил о создании The PHP Foundation, который будет спонсировать проектирование и разработку PHP. [258]

Год фиксирует Отзывы RFC
2022 [259] 683 283 8
2023 [260] 784 702 17

Фонд нанимает «Основных разработчиков» для работы над основным репозиторием языка PHP. Член правления фонда Роман Пронский заявил, что они намерены выплачивать застройщикам "рыночные зарплаты". [261]

Реакция на фонд в основном была положительной: фонд хвалили за лучшую поддержку языка и помощь в прекращении падения популярности языка. [262] [263] Однако его также критиковали за добавление критических изменений в второстепенные версии PHP, например, в PHP 8.2, где инициализация членов класса вне исходной области действия класса приводила к ошибкам обесценивания. [264] эти изменения повлияли на ряд проектов с открытым исходным кодом, включая WordPress . [265]

Германии Суверенный технологический фонд выделил более 200 000 евро на поддержку PHP Foundation. [266]

Установка и настройка

[ редактировать ]
Пример вывода функции phpinfo() в PHP 7.1

Существует два основных способа добавить поддержку PHP на веб-сервер — в виде собственного модуля веб-сервера или в виде исполняемого файла CGI. PHP имеет прямой интерфейс модуля, называемый интерфейсом программирования серверных приложений (SAPI), который поддерживается многими веб-серверами, включая HTTP-сервер Apache , Microsoft IIS и веб-сервер iPlanet . Некоторые другие веб-серверы, такие как OmniHTTPd, поддерживают интерфейс программирования приложений интернет-сервера (ISAPI), который представляет собой интерфейс модуля веб-сервера Microsoft . Если PHP не поддерживает модули веб-сервера, его всегда можно использовать в качестве процессора Common Gateway Interface (CGI) или FastCGI ; в этом случае веб-сервер настроен на использование исполняемого файла CGI PHP для обработки всех запросов к файлам PHP. [267]

PHP-FPM (FastCGI Process Manager) — это альтернативная реализация FastCGI для PHP, входящая в состав официального дистрибутива PHP, начиная с версии 5.3.3. [268] По сравнению со старой реализацией FastCGI, она содержит некоторые дополнительные функции, в основном полезные для сильно нагруженных веб-серверов. [269]

При использовании PHP для сценариев командной строки интерфейса командной строки необходим исполняемый файл CLI (CLI) PHP. PHP поддерживает интерфейс программирования приложений сервера (SAPI), начиная с PHP 4.3.0. [270] Основное внимание в этом SAPI уделяется разработке оболочки приложений с использованием PHP. Между CLI SAPI и другими SAPI существует немало различий, хотя во многом они имеют одинаковое поведение. [271]

PHP имеет прямой интерфейс модуля под названием SAPI для различных веб-серверов; [272] в случае PHP 5 и Apache 2.0 в Windows он предоставляется в виде файла DLL с именем php5apache2.dll , [273] это модуль, который, помимо других функций, обеспечивает интерфейс между PHP и веб-сервером, реализованный в форме, понятной серверу. Эта форма известна как SAPI. [ нужна ссылка ]

Существуют разные типы SAPI для различных расширений веб-сервера. Например, в дополнение к перечисленным выше, другие SAPI для языка PHP включают интерфейс Common Gateway и интерфейс командной строки. [272] [274]

PHP также можно использовать для написания настольных приложений с графическим пользовательским интерфейсом (GUI) с помощью расширения PHP-GTK . PHP-GTK не включен в официальный дистрибутив PHP. [267] и как расширение его можно использовать только с версиями PHP 5.1.0 и новее. Самый распространенный способ установки PHP-GTK — это его компиляция из исходного кода. [275]

Когда PHP устанавливается и используется в облачных средах, комплекты разработки программного обеспечения (SDK) для использования функций, специфичных для облака. предоставляются [ нужна ссылка ] Например:

Поддерживаются многочисленные параметры конфигурации, влияющие как на основные функции PHP, так и на расширения. [278] [279] Конфигурационный файл php.ini ищется в разных местах, в зависимости от способа использования PHP. [280] Файл конфигурации разделен на различные разделы, [281] хотя некоторые параметры конфигурации также можно установить в конфигурации веб-сервера. [282]

Использовать

[ редактировать ]
Общий обзор программного пакета LAMP, показанный здесь вместе со Squid.

PHP — это язык сценариев общего назначения, который особенно подходит для на стороне сервера веб-разработки , и в этом случае PHP обычно запускается на веб-сервере . Любой код PHP в запрошенном файле выполняется средой выполнения PHP, обычно для создания динамического содержимого веб-страницы или динамических изображений, используемых на веб-сайтах или в других местах. [283] Его также можно использовать для сценариев командной строки и (GUI) на стороне клиента с графическим интерфейсом пользователя приложений . PHP можно развернуть на большинстве веб-серверов, во многих операционных системах и платформах , а также использовать со многими системами управления реляционными базами данных (СУБД). Большинство провайдеров веб-хостинга поддерживают PHP для использования своими клиентами. Он доступен бесплатно, и PHP Group предоставляет пользователям полный исходный код для создания, настройки и расширения для собственного использования. [17]

Динамическая веб-страница: пример серверного сценария (PHP и MySQL)

Первоначально разработанный для создания динамических веб-страниц , PHP теперь фокусируется в основном на написании сценариев на стороне сервера . [284] и он похож на другие серверные языки сценариев, которые передают динамический контент от веб-сервера клиенту , такие как Python , Microsoft от ASP.NET , Sun Microsystems от JavaServer Pages , [285] и mod_perl. PHP также привлек внимание к разработке множества программных платформ , которые предоставляют строительные блоки и структуру проектирования для ускорения разработки приложений (RAD). [ нужна ссылка ] Некоторые из них включают PRADO , CakePHP , Symfony , CodeIgniter , Laravel , Yii Framework , Phalcon и Laminas , предлагающие функции, аналогичные другим веб-фреймворкам .

Архитектура LAMP стала популярной в веб-индустрии как способ развертывания веб-приложений. [286] PHP обычно используется как P в этом пакете наряду с Linux , Apache и MySQL , хотя P может также относиться к Python , Perl или их смеси. Аналогичные пакеты WAMP и MAMP также доступны для Windows и macOS , где первая буква обозначает соответствующую операционную систему. Хотя и PHP, и Apache включены в базовую установку macOS, пользователям этих пакетов нужен более простой механизм установки, который легче поддерживать в актуальном состоянии. [ нужна ссылка ]

Для конкретных и более сложных сценариев использования PHP предлагает четко определенный и документированный способ написания пользовательских расширений на C или C++ . [287] [288] [289] [290] [291] [292] [293] [ нужен неосновной источник ] Помимо расширения самого языка в виде дополнительных библиотек , расширения предоставляют возможность повысить скорость выполнения там, где это критично, и есть возможности для улучшений за счет использования настоящего компилируемого языка . [294] [295] PHP также предлагает четко определенные способы встраивания в другие программные проекты. Таким образом, PHP можно легко использовать в качестве внутреннего языка сценариев проекта для другого проекта, обеспечивая при этом тесный интерфейс с конкретными внутренними структурами данных . [296]

PHP получил неоднозначные отзывы из-за отсутствия поддержки многопоточности на уровне ядра языка. [297] хотя использование потоков стало возможным благодаря расширению PECL «pthreads» . [298] [299]

интерфейс командной строки, php-cli и два скриптовых механизма ActiveX Windows Script Host для PHP. Были созданы [ нужна ссылка ]

Статистика популярности и использования

[ редактировать ]

PHP используется для систем управления веб-контентом, включая MediaWiki , [300] WordPress , [301] Джумла , [302] Друпал , [303] Мудл , [304] eZ Publish , eZ Platform и SilverStripe . [305]

По состоянию на январь 2013 г. PHP использовался на более чем 240 миллионах веб-сайтов (39% из выбранных) и был установлен на 2,1 миллиона веб-серверов . [306]

По состоянию на 23 июля 2024 г. (через восемь месяцев после выпуска PHP 8.3) PHP используется в качестве серверного языка программирования на 76,1% веб-сайтов, язык которых можно определить; PHP 7 является наиболее используемой версией языка: 53% веб-сайтов, использующих PHP, используют эту версию, 32,5% используют PHP 8, 14,3% используют PHP 5 и 0,2% используют PHP 4. [19]

PHP 8:
32.5%
PHP 7:
53%
PHP 5+PHP 4:
14.3%+0.2%






Доля использования версий PHP на 23 июля 2024 г.:
через восемь месяцев после выпуска PHP 8.3 [19] [307] [308] [309] [310]

  PHP 8.3: 6,00% от PHP 8 (1,95%)
  PHP 8.2: 20,3% от PHP 8 (6,60%)
  PHP 8.1: 43,3% от PHP 8 (14,07%)
  PHP 8.0: 30,4% от PHP 8 (9,88%)
  PHP 7.4: 70,9% PHP 7 (37,58%)
  PHP 7.3: 12,3% от PHP 7 (6,52%)
  PHP 7.2: 9,00% от PHP 7 (4,77%)
  PHP 7.1: 3,80% от PHP 7 (2,01%)
  PHP 7.0: 4,10% от PHP 7 (2,17%)
  PHP 5.6: 53,9% от PHP 5 (7,7077%)
  PHP 5.5: 8,40% от PHP 5 (1,2012%)
  PHP 5.4: 15,5% от PHP 5 (2,2165%)
  PHP 5.3: 14,9% от PHP 5 (2,1307%)
  PHP 5.2: 6,90% от PHP 5 (0,9867%)
  PHP 5.1: 0,40% от PHP 5 (0,0572%)
  PHP 5.0: 0,10% от PHP 5 (0,0143%)
  PHP 4.4: 78,7% от PHP 4 (0,1574%)
  PHP 4.3: 18,0% от PHP 4 (0,0360%)
  PHP 4.2: 2,10% от PHP 4 (0,0042%)
  PHP 4.1: 0,80% от PHP 4 (0,0016%)
  PHP 4.0: 0,40% от PHP 4 (0,0008%)

Безопасность

[ редактировать ]

В 2019 году 11% всех уязвимостей, перечисленных в Национальной базе данных уязвимостей, были связаны с PHP; [311] исторически около 30% всех уязвимостей, перечисленных в этой базе данных с 1996 года, связаны с PHP. Технические недостатки безопасности самого языка или его основных библиотек встречаются нечасто (22 в 2009 году, около 1% от общего числа, хотя PHP применим примерно к 20% перечисленных программ). [312] Признавая, что программисты допускают ошибки, некоторые языки включают проверку на наличие ошибок , чтобы автоматически обнаруживать отсутствие проверки ввода , что вызывает множество проблем. Такая функция разрабатывается для PHP, [313] но в прошлом его включение в релиз несколько раз отклонялось. [314] [315]

Существуют исправления расширенной защиты, такие как Suhosin и Hardening -Patch, специально разработанные для сред веб-хостинга. [316]

Исторически сложилось так, что старые версии PHP имели некоторые параметры конфигурации и значения по умолчанию для таких настроек времени выполнения, что делало некоторые приложения PHP уязвимыми к проблемам с безопасностью. Среди них magic_quotes_gpc и register_globals[317] директивы конфигурации были наиболее известны; последний превратил любые параметры URL-адреса в переменные PHP, открывая путь для серьезных уязвимостей безопасности, позволяя злоумышленнику установить значение любой неинициализированной глобальной переменной и помешать выполнению PHP-скрипта. Поддержка настроек « волшебных кавычек » и «регистрации глобальных переменных» устарела, начиная с PHP 5.3.0, и удалена из PHP 5.4.0. [318]

Другой пример потенциальной уязвимости настроек времени выполнения — невозможность отключить выполнение PHP (например, с помощью engine директива конфигурации) [319] для каталога, в котором хранятся загруженные файлы; его включение может привести к выполнению вредоносного кода, встроенного в загруженные файлы. [320] [321] [322] Лучше всего либо найти каталог изображений за пределами корня документа, доступного веб-серверу, и обслуживать его через промежуточный скрипт, либо отключить выполнение PHP для каталога, в котором хранятся загруженные файлы. [ нужна ссылка ]

Кроме того, включение динамической загрузки расширений PHP (через enable_dl директива конфигурации) [323] в среде общего веб-хостинга может привести к проблемам с безопасностью. [324] [325]

Неявные преобразования типов , в результате которых разные значения рассматриваются как равные, иногда вопреки намерениям программиста, могут привести к проблемам безопасности. Например, результат сравнения '0e1234' == '0' является true, поскольку строки, которые можно анализировать как числа, преобразуются в числа; в этом случае первое сравниваемое значение рассматривается как экспоненциальное обозначение, имеющее значение ( 0 × 10 1234 ), что равно нулю. Подобные ошибки приводили к уязвимостям аутентификации на форуме Simple Machines , [326] Опечатка3 [327] и phpBB [328] при MD5 хешей паролей сравнении . Рекомендуемый способ — использовать hash_equals() (для безопасности атаки по времени ), strcmp или оператор идентификации ( ===), как '0e1234' === '0' приводит к false. [ нужна ссылка ]

В анализе более 170 000 дефейсов веб-сайтов , опубликованном Zone-H в 2013 году , наиболее часто (53%) используемым методом была эксплуатация уязвимости включения файлов , в основном связанная с небезопасным использованием конструкций языка PHP. include, require, и allow_url_fopen. [329] [330]

Настоятельно рекомендуется перейти на PHP 8.1 или более позднюю версию и использовать random_int()[331] вместо rand()[332] или mt_rand(), [333] поскольку последние функции не являются криптографически безопасными. Существует две атаки, которые можно осуществить на источники энтропии PHP: «начальная атака» и «атака восстановления состояния». [ нужна ссылка ] стоимостью 250 долларов По состоянию на 2012 год графический процессор может выполнять до 2 30 Вычисления MD5 в секунду, а графический процессор стоимостью 750 долларов может выполнять в четыре раза больше вычислений одновременно. [334] В сочетании с « атакой дня рождения » это может привести к серьезным уязвимостям безопасности. [ нужна ссылка ]

По состоянию на 23 июля 2024 г. (через 8 месяцев после выпуска PHP 8.3) W3Techs сообщает, что 77,4% веб-сайтов, использующих PHP, используют версии 8.0 или старше (которые больше не поддерживаются командой разработчиков PHP). [335] PHP версии 5 по-прежнему используется на 14,3% всех веб-сайтов. [308]

Zend предлагает платную активную долгосрочную поддержку PHP (PHP LTS), которая включает исправления безопасности:

  • опционально платно за поддерживаемые версии PHP;
  • платится только за устаревшие ветки PHP, включая:
    • 8.0 до конца 2025 года;
    • 7.4, 7.3 и 7.2 до конца 2026 года.

Срок платной поддержки каждой ветки, начиная с выпуска исходной стабильной версии, составляет не менее 5 лет. [336]

8.3 8.2
8.1
22.62%
Поддерживаемые версии PHP [337]
8.0
7.4 7.3 7.2
58.75%
Неподдерживаемые ветки (доступен PHP LTS) [338]
7.1 7.0
5.x 4.x
18.70%
Неподдерживаемые ветки [18]






См. также

[ редактировать ]
  1. Перейти обратно: Перейти обратно: а б Лердорф, Расмус (8 июня 1995 г.). «Анонс: инструменты личной домашней страницы (инструменты PHP)» . Проверено 7 июня 2011 г.
  2. Перейти обратно: Перейти обратно: а б Лердорф, Расмус (26 апреля 2007 г.). «PHP на гормонах - история презентации PHP Расмусом Лердорфом на конференции MySQL в Санта-Кларе, Калифорния» . Сеть разговоров. Архивировано из оригинала 6 января 2019 г. Проверено 11 декабря 2009 г.
  3. ^ «PHP: Архив новостей — 2024» . www.php.net .
  4. ^ «PHP: Аргументы функции – Руководство» . Secure.php.net .
  5. ^ «PHP: Архивы релизов (музей)» . музей.php.net .
  6. ^ «PHP: Предисловие – Руководство» .
  7. ^ Стогов, Дмитрий [@dstogov] (04.12.2015). «Не секрет, что некоторые идеи по оптимизации #PHP7 пришли из HHVM, LuaJIT и V8. Спасибо @HipHopVM @SaraMG. #php7thankyou» ( твит ) – через Twitter .
  8. ^ «PHP: препроцессор гипертекста» . www.php.net . Проверено 12 февраля 2020 г.
  9. Перейти обратно: Перейти обратно: а б Крил, Пол (18 ноября 2013 г.). «Верьте шумихе: основатель PHP поддерживает технологию Facebook HipHop» . Инфомир . Проверено 13 октября 2022 г.
  10. ^ «Анонс: инструменты личной домашней страницы (инструменты PHP)» . groups.google.com . Проверено 3 ноября 2022 г.
  11. Перейти обратно: Перейти обратно: а б с д и ж г час я «История PHP и связанных с ним проектов» . Группа PHP . Проверено 25 февраля 2008 г.
  12. Перейти обратно: Перейти обратно: а б «История PHP» . php.net .
  13. ^ Олссон, Микаэль (04 сентября 2013 г.). Краткое руководство по написанию сценариев PHP . Апресс. ISBN  978-1-4302-6284-8 .
  14. ^ Руководство по PHP: Предисловие , www.php.net.
  15. ^ «Введение: что может PHP?» . Руководство по PHP . Проверено 5 марта 2009 г.
  16. ^ вертолет: порт node-ar-drone, который позволяет пользователю управлять дроном Parrot AR через PHP: jolicode/php-ar-drone , JoliCode, 11 января 2019 г. , получено 23 февраля 2019 г.
  17. Перейти обратно: Перейти обратно: а б «Встраивание PHP в HTML» . О'Рейли. 3 мая 2001 г. Архивировано из оригинала 19 февраля 2008 г. Проверено 25 февраля 2008 г.
  18. Перейти обратно: Перейти обратно: а б «PHP: неподдерживаемые ветки» . www.php.net .
  19. Перейти обратно: Перейти обратно: а б с «Статистика использования PHP для веб-сайтов» . W3Techs – Обзоры технологий Всемирной паутины . W3Techs . Проверено 23 июля 2024 г.
  20. ^ Лердорф, Расмус (20 июля 2012 г.). «Интересно, почему люди продолжают писать, что PHP когда-либо был написан на Perl. Этого никогда не было. #php» . Твиттер . Проверено 4 сентября 2014 г.
  21. ^ Лердорф, Расмус (26 апреля 2007 г.). «ПГП на гормонах» . Сеть разговоров. Архивировано из оригинала (mp3) 6 января 2019 г. Проверено 22 июня 2009 г.
  22. ^ Лердорф, Расмус (2007). «Слайд 3» . слайды к докладу «PHP о гормонах» . Группа PHP . Проверено 22 июня 2009 г.
  23. ^ Лердорф, Расмус (8 июня 1995 г.). «Анонс: инструменты личной домашней страницы (инструменты PHP)» . Группа новостей : comp.infosystems.www.authoring.cgi . Проверено 17 сентября 2006 г.
  24. ^ «Расмус Лердорф, старший технический специалист Yahoo: PHP, за микрофоном» . 19 ноября 2003 г. Архивировано из оригинала 28 июля 2013 г.
  25. ^ Альшетви, AB; Рахмат, РААО; Борхан, Миннесота; Исмаэль, С.; Али, А.; Иртема, ХИМ; Альфахрия, AY (2018). «Интернет-экспертная система для оптимизации дорожного движения в развивающихся странах» . Проверено 13 февраля 2024 г.
  26. ^ «Проблемы с PHP» . Проверено 20 декабря 2010 г.
  27. ^ "php.internals: Re: Согласованность имени функции" . news.php.net . 28 декабря 2013 г. Проверено 9 февраля 2014 г.
  28. ^ Расмус Лердорф (16 декабря 2013 г.). «Re: Гибкое именование функций» . Группа новостей : php.internals . Проверено 26 декабря 2013 г.
  29. ^ «PHP — аббревиатура, означающая голосование» . PHP.net . Архивировано из оригинала 15 августа 2000 года.
  30. ^ «Zend Engine версии 2.0: обзор функций и дизайн» . Zend Technologies Ltd. Архивировано из оригинала 19 июля 2006 г. Проверено 17 сентября 2006 г.
  31. ^ «Архив новостей php.net 2007» . Группа PHP. 13 июля 2007 г. Проверено 22 февраля 2008 г.
  32. ^ Кернер, Шон Майкл (1 февраля 2008 г.). «PHP 4 мертв — да здравствует PHP 5» . ИнтернетНовости. Архивировано из оригинала 6 августа 2018 г. Проверено 16 декабря 2018 г.
  33. ^ Трахтенберг, Адам (15 июля 2004 г.). «Почему PHP 5 потрясающий!» . О'Рейли. Архивировано из оригинала 31 марта 2016 г. Проверено 22 февраля 2008 г.
  34. ^ «Позднее статическое связывание в PHP» . Цифровой сэндвич. 23 февраля 2006 г. Проверено 25 марта 2008 г.
  35. ^ «Статическое ключевое слово» . Группа PHP . Проверено 25 марта 2008 г.
  36. ^ «GoPHP5» . Архивировано из оригинала 17 июля 2011 г.
  37. ^ «Проекты PHP объединяют усилия для перехода на PHP 5» (PDF) . Пресс-релиз GoPHP5 . Архивировано из оригинала (PDF) 4 августа 2019 г. Проверено 23 февраля 2008 г.
  38. ^ «GoPHP5» . GoPHP5. Архивировано из оригинала 27 апреля 2011 г. Проверено 22 февраля 2008 г.
  39. ^ «Установка и настройка PHP» . php.net . Проверено 29 октября 2013 г.
  40. ^ «PHP для Windows: выпуски двоичных файлов и исходного кода (5.3)» . php.net . Проверено 29 октября 2013 г.
  41. ^ «PHP для Windows: выпуски двоичных файлов и исходного кода (5.4)» . php.net . Проверено 29 октября 2013 г.
  42. ^ «PHP для Windows: выпуски двоичных файлов и исходного кода (5.5)» . php.net . Проверено 29 октября 2013 г.
  43. ^ «PHP: Поддерживаемые версии» .
  44. ^ «Типы: строки (Руководство PHP)» . PHP.net . Проверено 22 сентября 2013 г.
  45. ^ «Подробное описание строкового типа (Руководство по PHP)» . PHP.net . Проверено 22 сентября 2021 г.
  46. ^ Андрей Змиевский (10 августа 2005 г.). «Документ по проектированию поддержки PHP Unicode» (список рассылки) . Проверено 9 февраля 2014 г.
  47. ^ «PHP 5.5 или 6.0» . Проверено 9 февраля 2014 г.
  48. ^ Андрей Змиевский (22 апреля 2011 г.). «Хороший, плохой и злой: что случилось с Unicode и PHP 6» . Проверено 9 февраля 2014 г.
  49. ^ Расмус Лердорф (11 марта 2010 г.). «PHP 6» (список рассылки) . Проверено 7 февраля 2014 г.
  50. ^ «Бесконечные маппет-дебаты между PHP 6 и PHP 7» . Архивировано из оригинала 19 ноября 2015 г. Проверено 19 ноября 2015 г.
  51. ^ «RFC: название следующей версии PHP» . php.net . 07.07.2014 . Проверено 15 июля 2014 г.
  52. ^ «Re: [PHP-DEV] [VOTE] [RFC] Название следующей версии PHP (снова)» . 30 июля 2014 г. Проверено 30 июля 2014 г.
  53. ^ «phpng: обновленный PHP-движок с большим улучшением производительности» . news.php.net .
  54. ^ «PHP: rfc:phpng» . php.net . Проверено 16 декабря 2014 г.
  55. Перейти обратно: Перейти обратно: а б «PHP: phpng» . php.net . Проверено 15 июля 2014 г.
  56. ^ «Объединить ветку ZendEngine3 » . github.com . 05.12.2014 . Проверено 5 декабря 2014 г.
  57. Перейти обратно: Перейти обратно: а б с «PHP: Процесс выпуска» . 20 июня 2011 г. Проверено 6 октября 2013 г.
  58. Перейти обратно: Перейти обратно: а б «PHP RFC: Исключения в движке (для PHP 7)» . php.net . Проверено 21 мая 2015 г.
  59. Перейти обратно: Перейти обратно: а б «PHP RFC: унифицированный синтаксис переменных» . php.net . 31 мая 2014 г. Проверено 30 июля 2014 г.
  60. ^ «Онлайн-редактор PHP | вывод для udRhX» . 3v4l.org .
  61. ^ «PHP RFC: исправлено поведение «foreach»» . php.net . Проверено 21 мая 2015 г.
  62. ^ «PHP RFC: поведение конструктора внутренних классов» . php.net . Проверено 21 мая 2015 г.
  63. ^ «PHP RFC: Удаление мертвых или еще не перенесенных PHP7 SAPI и расширений» . php.net . Проверено 21 мая 2015 г.
  64. ^ «PHP RFC: исправлено несогласованность поведения list()» . php.net . Проверено 21 мая 2015 г.
  65. ^ «PHP RFC: удаление альтернативных тегов PHP» . php.net . Проверено 21 мая 2015 г.
  66. ^ «PHP RFC: сделать определение нескольких вариантов по умолчанию в переключателе синтаксической ошибкой» . php.net . Проверено 21 мая 2015 г.
  67. ^ «PHP RFC: удалить поддержку шестнадцатеричного формата в числовых строках» . php.net . Проверено 21 мая 2015 г.
  68. Перейти обратно: Перейти обратно: а б «PHP RFC: целочисленная семантика» . php.net . Проверено 21 мая 2015 г. Если NaN и Infinity всегда становятся равными нулю при приведении к целому числу, это означает большую межплатформенную согласованность, а также менее удивительно, чем то, что происходит в настоящее время.
  69. ^ «PHP RFC: сбой ZPP при переполнении» . php.net . Проверено 21 мая 2015 г.
  70. Перейти обратно: Перейти обратно: а б с «RFC: типы возвращаемых данных» . php.net . 27 января 2015 г. Проверено 28 января 2015 г.
  71. Перейти обратно: Перейти обратно: а б с д и ж «RFC: Объявления скалярных типов» . php.net . 16 марта 2015 г. Проверено 17 марта 2015 г.
  72. Перейти обратно: Перейти обратно: а б с д и ж г час я дж к л Брент. «Что нового в PHP 8» . Сшиватель . Проверено 22 сентября 2020 г.
  73. Перейти обратно: Перейти обратно: а б «Выпущен PHP 8» . PHP . Проверено 27 ноября 2020 г.
  74. Перейти обратно: Перейти обратно: а б «PHP: rfc:jit» . wiki.php.net . Проверено 5 апреля 2019 г.
  75. ^ Брент. «PHP 8: производительность JIT в реальных веб-приложениях» . Сшиватель.io . Проверено 4 октября 2020 г.
  76. ^ Ретемс, Дерик. «PHP 8: краткий обзор JIT» .
  77. Перейти обратно: Перейти обратно: а б Попов, Никита (13 июля 2020 г.). « Что нового в PHP 8.0?» Никита Попов» . PHP по пятницам. Архивировано из оригинала 11 декабря 2021 г. Проверено 4 октября 2020 г.
  78. ^ Даниэле, Карло (25 мая 2020 г.). «Что нового в PHP 8 (функции, улучшения и JIT-компилятор)» . Кинста . Проверено 24 декабря 2020 г.
  79. ^ Редмонд, Пол (15 июля 2020 г.). «Выражение соответствия появится в PHP 8» . Новости Ларавел . Проверено 4 октября 2020 г.
  80. ^ «PHP 8.0: Сопоставление выражений» . PHP Смотреть . Проверено 4 октября 2020 г.
  81. ^ Барнс, Эрик (27 ноября 2020 г.). «PHP 8 уже выпущен!» . Новости Ларавел . Проверено 24 декабря 2020 г.
  82. Перейти обратно: Перейти обратно: а б «PHP RFC: выражение throw» . wiki.php.net . Проверено 14 августа 2020 г. .
  83. Перейти обратно: Перейти обратно: а б «PHP RFC: оператор Nullsafe» . wiki.php.net . Проверено 14 августа 2020 г. .
  84. ^ Русе, Брент. «PHP 8: Продвижение свойств конструктора» . Проверено 30 апреля 2024 г.
  85. Перейти обратно: Перейти обратно: а б «PHP: rfc:weakrefs» . wiki.php.net . Проверено 5 апреля 2019 г.
  86. ^ Купец, Амит (13 июня 2020 г.). «Эти новые строковые функции появятся в PHP 8» . Амит Мерчант . Проверено 4 октября 2020 г.
  87. ^ Попов, Никита. «Призыв к участию: аннотирование внутренних аргументов функции и типов возвращаемых значений» . Внешние . Проверено 19 ноября 2020 г. .
  88. ^ «Журнал изменений PHP 8» . PHP.net . Проверено 5 января 2024 г.
  89. ^ «PHP: Объявление о выпуске PHP 8.1.0» . PHP.net . Проверено 5 января 2024 г.
  90. ^ «Журнал изменений PHP 8» . PHP.net . Проверено 5 января 2024 г.
  91. ^ «PHP: Объявление о выпуске PHP 8.2.0» . PHP.net . Проверено 5 января 2024 г.
  92. Перейти обратно: Перейти обратно: а б с д и ж г час я дж к л «Неподдерживаемые ветки» . php.net . Проверено 31 июля 2019 г.
  93. ^ «Выпущен PHP 4.0.0» . Проверено 25 октября 2020 г.
  94. Перейти обратно: Перейти обратно: а б с д «PHP: Журнал изменений PHP 4» . Группа PHP. 3 января 2008 г. Проверено 22 февраля 2008 г.
  95. ^ «Объявление о выпуске PHP 4.1.0» . Проверено 25 октября 2020 г.
  96. ^ «Объявление о выпуске PHP 4.2.0» . Проверено 25 октября 2020 г.
  97. ^ «Объявление о выпуске PHP 4.3.0» . Проверено 25 октября 2020 г.
  98. ^ «Использование PHP из командной строки» . Руководство по PHP . Группа PHP . Проверено 11 сентября 2009 г.
  99. ^ «Объявление о выпуске PHP 4.4.0» . Проверено 25 октября 2020 г.
  100. ^ «Объявление о выпуске PHP 4.4.0» . Руководство по PHP . Группа PHP . Проверено 24 ноября 2013 г.
  101. ^ «Выпущен PHP 5.0.0!» . Проверено 25 октября 2020 г.
  102. Перейти обратно: Перейти обратно: а б с «PHP: Журнал изменений PHP 5» . Группа PHP. 08.11.2007 . Проверено 22 февраля 2008 г.
  103. ^ «Объявление о выпуске PHP 5.1.0» . Проверено 25 октября 2020 г.
  104. ^ «Руководство PHP: PDO» . Группа PHP. 15 ноября 2011 г. Проверено 15 ноября 2011 г.
  105. ^ «Объявление о выпуске PHP 5.2.0» . Проверено 25 октября 2020 г.
  106. ^ «Объявление о выпуске PHP 5.3.0» . Проверено 25 октября 2020 г.
  107. ^ «Объявление о выпуске PHP 5.4.0» . Проверено 25 октября 2020 г.
  108. ^ «Встроенный веб-сервер» . Проверено 26 марта 2012 г.
  109. ^ «Объявление о выпуске PHP 5.5.0» . Проверено 25 октября 2020 г.
  110. Перейти обратно: Перейти обратно: а б с д «Поддерживаемые версии» . php.net . Проверено 13 декабря 2017 г.
  111. ^ «Изменения PHP 5.5.0» . php.net . Проверено 3 марта 2015 г.
  112. ^ «Объявление о выпуске PHP 5.6.0» . Проверено 25 октября 2020 г.
  113. ^ «Миграция с PHP 5.5.x на PHP 5.6.x» . php.net . Проверено 24 марта 2014 г.
  114. ^ «Сброс PHP 6» . На полках лежат книги, посвященные PHP 6, по крайней мере, с 2008 года. Но в марте 2010 года версия PHP 6 еще не вышла – на самом деле, она даже не близка к выходу. Недавние события позволяют предположить, что PHP 6 не будет выпущен раньше 2011 года – если он вообще будет выпущен.
  115. ^ «PHP 7 движется вперед на полной скорости» . 31 октября 2014 г. Последние версии PHP были частью серии выпусков 5.x, но PHP 6 не будет. «Мы собираемся пропустить [версию] 6, потому что много лет назад у нас были планы на 6, но эти планы были очень отличается от того, что мы делаем сейчас», — сказал Гутманс. Переход сразу к версии 7 позволит избежать путаницы.
  116. ^ «Архив новостей – 2018: Выпущен PHP 7.2.9» . php.net . 16 августа 2018 г. Проверено 16 августа 2018 г.
  117. ^ «PHP: rfc:size_t_and_int64_next» . php.net . Проверено 16 декабря 2014 г.
  118. ^ «PHP: rfc:abstract_syntax_tree» . php.net . Проверено 16 декабря 2014 г.
  119. ^ «PHP: rfc:closure_apply» . php.net . Проверено 16 декабря 2014 г.
  120. ^ «PHP: rfc:integer_semantics» . php.net . Проверено 16 декабря 2014 г.
  121. ^ «PHP: rfc:isset_ternary» . php.net . Проверено 16 декабря 2014 г.
  122. ^ «RFC: синтаксис escape-кода Unicode» . 24 ноября 2014 г. Проверено 19 декабря 2014 г.
  123. ^ «Оператор комбинированного сравнения (космического корабля)» . php.net . Проверено 21 мая 2015 г.
  124. ^ «PHP RFC: делегирование генератора» . php.net . Проверено 21 мая 2015 г.
  125. ^ «PHP RFC: анонимные классы» . php.net . Проверено 21 мая 2015 г.
  126. ^ «PHP RFC: простой CSPRNG для пользователя» . php.net . Проверено 21 мая 2015 г.
  127. ^ «PHP RFC: декларации группового использования» . php.net . Проверено 21 мая 2015 г.
  128. ^ «PHP: rfc:iterable» . php.net . 10.06.2016 . Проверено 30 июня 2023 г.
  129. ^ «PHP: rfc:nullable_types» . php.net . 10 апреля 2014 г. Проверено 30 июня 2023 г.
  130. ^ «PHP: rfc:void_return_type» . php.net . 09.11.2015 . Проверено 14 ноября 2015 г.
  131. ^ «PHP: rfc:class_constant_visibility» . php.net . 27.10.2015 . Проверено 8 декабря 2015 г.
  132. ^ «PHP: rfc:short_list_syntax» . php.net . 07.04.2016 . Проверено 30 июня 2023 г.
  133. ^ «PHP: rfc:multiple-catch» . php.net . 06.03.2016 . Проверено 30 июня 2023 г.
  134. ^ «PHP: rfc:object-typehint» . wiki.php.net .
  135. ^ «PHP: rfc:libsodium» . wiki.php.net .
  136. ^ «PHP: rfc:allow-abstract-function-override» . wiki.php.net .
  137. ^ «PHP: rfc:parameter-no-type-variance» . wiki.php.net .
  138. ^ «PHP: todo:php73» . wiki.php.net .
  139. ^ «PHP: rfc:flexible_heredoc_nowdoc_syntaxes» . wiki.php.net .
  140. ^ «PHP: rfc:list_reference_assignment» . wiki.php.net .
  141. ^ «PHP: rfc:pcre2-миграция» . wiki.php.net .
  142. ^ «PHP: hrtime – Руководство» . php.net .
  143. ^ «Выпущен PHP 7.4.0!» . php.net . Проверено 28 ноября 2019 г.
  144. ^ «PHP: rfc:typed_properties_v2» . wiki.php.net . Проверено 4 апреля 2019 г.
  145. ^ «PHP: rfc:preload» . wiki.php.net . Проверено 4 апреля 2019 г.
  146. ^ «PHP: rfc:null_coalesce_equal_operator» . wiki.php.net . Проверено 4 апреля 2019 г.
  147. ^ «PHP: rfc:improve-openssl-random-pseudo-bytes» . wiki.php.net . Проверено 4 апреля 2019 г.
  148. ^ «PHP: rfc:ffi» . wiki.php.net . Проверено 5 апреля 2019 г.
  149. ^ «PHP: rfc:permanent_hash_ext» . wiki.php.net . Проверено 5 апреля 2019 г.
  150. ^ «PHP: rfc:password_registry» . wiki.php.net . Проверено 5 апреля 2019 г.
  151. ^ «PHP: rfc:mb_str_split» . wiki.php.net . Проверено 5 апреля 2019 г.
  152. ^ «PHP: rfc:reference_reflection» . wiki.php.net . Проверено 5 апреля 2019 г.
  153. ^ «PHP: rfc:deprecate-and-remove-ext-wddx» . wiki.php.net . Проверено 5 апреля 2019 г.
  154. ^ «PHP: rfc:custom_object_serialization» . wiki.php.net . Проверено 5 апреля 2019 г.
  155. ^ «PHP: Поддерживаемые версии» . php.net . Проверено 26 ноября 2023 г.
  156. ^ «PHP: rfc:negative_array_index» . wiki.php.net . Проверено 5 апреля 2019 г.
  157. ^ «PHP RFC: проверка абстрактных методов свойств» . wiki.php.net . Проверено 14 августа 2020 г. .
  158. ^ «PHP RFC: более разумное сравнение строк и чисел» . wiki.php.net . Проверено 14 августа 2020 г. .
  159. ^ «PHP RFC: более разумные числовые строки» . wiki.php.net . Проверено 14 августа 2020 г. .
  160. ^ «PHP RFC: более строгие проверки типов для арифметических/побитовых операторов» . wiki.php.net . Проверено 14 августа 2020 г. .
  161. ^ «PHP RFC: реклассификация предупреждений модуля» . wiki.php.net . Проверено 14 августа 2020 г. .
  162. ^ «PHP: rfc:consistent_type_errors» . wiki.php.net . Проверено 5 апреля 2019 г.
  163. ^ «PHP: rfc:lsp_errors» . wiki.php.net . Проверено 26 мая 2019 г.
  164. ^ «PHP RFC: независимое от локали преобразование числа с плавающей запятой в строку» . wiki.php.net . Проверено 14 августа 2020 г. .
  165. ^ «PHP RFC: настройки синтаксиса переменных» . wiki.php.net . Проверено 14 августа 2020 г. .
  166. ^ «PHP RFC: Атрибуты V2» . wiki.php.net . Проверено 14 августа 2020 г. .
  167. ^ «PHP RFC: поправки к атрибутам» . wiki.php.net . Проверено 14 августа 2020 г. .
  168. ^ «PHP RFC: сокращенный синтаксис атрибутов» . wiki.php.net . Проверено 20 июня 2020 г.
  169. ^ «PHP RFC: изменение синтаксиса более коротких атрибутов» . wiki.php.net . Проверено 14 августа 2020 г. .
  170. ^ «PHP RFC: именованные аргументы» . wiki.php.net . Проверено 14 августа 2020 г. .
  171. ^ «PHP RFC: выражение соответствия v2» . wiki.php.net . Проверено 14 августа 2020 г. .
  172. ^ «PHP RFC: продвижение свойств конструктора» . wiki.php.net . Проверено 14 августа 2020 г. .
  173. ^ «PHP RFC: типы объединения 2.0» . wiki.php.net . Проверено 14 августа 2020 г. .
  174. ^ «PHP RFC: смешанный тип v2» . wiki.php.net . Проверено 14 августа 2020 г. .
  175. ^ «PHP RFC: статический тип возвращаемого значения» . wiki.php.net . Проверено 14 августа 2020 г. .
  176. ^ «PHP RFC: уловы без захвата» . wiki.php.net . Проверено 14 августа 2020 г. .
  177. ^ Андре, Тайсон. «PHP RFC: всегда доступное расширение JSON» . PHP . Проверено 25 октября 2020 г.
  178. ^ «PHP: todo:php81» . wiki.php.net . Проверено 16 июня 2022 г.
  179. ^ «PHP RFC: явная запись восьмеричного целого числа» . wiki.php.net . Проверено 25 ноября 2020 г.
  180. ^ «PHP RFC: перечисления» . wiki.php.net . Проверено 25 марта 2021 г.
  181. ^ «PHP: rfc:readonly_properties_v2» . wiki.php.net . Проверено 26 ноября 2021 г.
  182. ^ «PHP: rfc:first_class_callable_syntax» . wiki.php.net . Проверено 26 ноября 2021 г.
  183. ^ «PHP: rfc:new_in_initializers» . wiki.php.net . Проверено 26 ноября 2021 г.
  184. ^ «PHP: rfc:pure-intersection-types» . wiki.php.net . Проверено 26 ноября 2021 г.
  185. ^ «PHP: rfc:noreturn_type» . wiki.php.net . Проверено 26 ноября 2021 г.
  186. ^ «PHP: rfc:final_class_const» . wiki.php.net . Проверено 26 ноября 2021 г.
  187. ^ «PHP: rfc:fibers» . wiki.php.net . Проверено 26 ноября 2021 г.
  188. ^ «PHP: todo:php82» . wiki.php.net . Проверено 16 июня 2022 г.
  189. ^ «PHP: rfc:readonly_classes» . wiki.php.net . Проверено 16 июня 2022 г.
  190. ^ «PHP: rfc:null-false-standalone-types» . wiki.php.net . Проверено 16 июня 2022 г.
  191. ^ «PHP: rfc:true-type» . wiki.php.net . Проверено 16 июня 2022 г.
  192. ^ «PHP: rfc:strtolower-ascii» . wiki.php.net . Проверено 16 июня 2022 г.
  193. ^ «PHP: rfc:dnf_types» . wiki.php.net . Проверено 7 февраля 2023 г.
  194. ^ «PHP: rfc:constants_in_traits» . wiki.php.net . Проверено 7 февраля 2023 г.
  195. ^ «Выпущен PHP 8.3.0!» . php.net . 23 ноября 2023 г. Проверено 24 ноября 2023 г.
  196. ^ «PHP: rfc:typed_class_constants» . wiki.php.net . Проверено 17 декабря 2023 г.
  197. ^ «PHP: rfc:dynamic_class_constant_fetch» ​​. wiki.php.net . Проверено 17 декабря 2023 г.
  198. ^ «PHP: rfc:marking_overriden_methods» . wiki.php.net . Проверено 17 декабря 2023 г.
  199. ^ «PHP: rfc:readonly_amendments» . wiki.php.net . Проверено 17 декабря 2023 г.
  200. ^ «PHP: rfc:json_validate» . wiki.php.net . Проверено 17 декабря 2023 г.
  201. ^ «PHP: rfc:randomizer_additions» . wiki.php.net . Проверено 17 декабря 2023 г.
  202. ^ «PHP: задача: php84» . php.net . 26 марта 2024 г. Проверено 26 марта 2024 г.
  203. ^ «PHP: ElePHPant» . 4 октября 2014 г. Проверено 4 октября 2014 г.
  204. ^ «Перенаправление…» . wwwphp-fb.github.io .
  205. ^ «Рождение талисмана PHP — создатель elePHPant Винсент Понтье раскрывает правдивую историю!» . 7php.com . 06 января 2014 г.
  206. ^ «ЭлеФПант» . PHP.земля . Проверено 13 февраля 2024 г.
  207. ^ «PHP: ElePHPant» . www.php.net .
  208. ^ «Полевой справочник по слонам» . afieldguidetoelephpants.net .
  209. ^ «теги – Руководство» . php.net . Проверено 17 февраля 2014 г.
  210. Перейти обратно: Перейти обратно: а б «PHP: rfc:shorttags» . php.net . 3 апреля 2008 г. Проверено 8 мая 2014 г.
  211. ^ «PHP: Основной синтаксис» . Группа PHP . Проверено 22 февраля 2008 г.
  212. ^ «Базовый стандарт кодирования» . Группа совместимости PHP Framework . Проверено 03 января 2016 г.
  213. ^ «эхо – Руководство» . php.net . Проверено 17 февраля 2014 г.
  214. ^ «Описание основных директив php.ini – Руководство» . php.net . 17 марта 2002 г. Проверено 17 февраля 2014 г.
  215. ^ «Ваша первая страница с поддержкой PHP» . Группа PHP . Проверено 25 февраля 2008 г.
  216. ^ Брей, Тим; и др. (26 ноября 2008 г.). «Инструкция по обработке» . Расширяемый язык разметки (XML) 1.0 (пятое издание) . W3C . Проверено 18 июня 2009 г.
  217. ^ «Переменные» . Группа PHP . Проверено 16 марта 2008 г.
  218. ^ «Разделение инструкций» . Группа PHP . Проверено 16 марта 2008 г.
  219. ^ «Комментарии» . Группа PHP . Проверено 16 марта 2008 г.
  220. ^ «Целые числа в PHP, работа с ножницами и переносимость» . Блог о производительности MySQL. 27 марта 2007 года . Проверено 28 марта 2007 г.
  221. Перейти обратно: Перейти обратно: а б с д и «Типы» . Группа PHP . Проверено 16 марта 2008 г.
  222. ^ «Струны» . Группа PHP . Проверено 21 марта 2008 г.
  223. ^ «SPL – Стандартная библиотека PHP» . PHP.net . 16 марта 2009 года . Проверено 16 марта 2009 г.
  224. Перейти обратно: Перейти обратно: а б «Пользовательские функции (руководство по PHP)» . php.net . 04 июля 2014 г. Проверено 7 июля 2014 г.
  225. Перейти обратно: Перейти обратно: а б «Функции переменных (руководство PHP)» . php.net . 04 июля 2014 г. Проверено 7 июля 2014 г.
  226. ^ «create_function() (руководство по PHP)» . php.net . 06.04.2022 . Проверено 4 мая 2022 г.
  227. ^ «Анонимные функции (руководство PHP)» . php.net . 04 июля 2014 г. Проверено 7 июля 2014 г.
  228. ^ «Стрелочные функции (руководство по PHP)» . php.net . Проверено 25 января 2021 г.
  229. ^ Кристиан Зейлер; Дмитрий Стогов (01.07.2008). «Запрос комментариев: Лямбда-функции и замыкания» . php.net . Проверено 7 июля 2014 г.
  230. Перейти обратно: Перейти обратно: а б «Ссылки на объекты PHP 5» . mjtsai.com . Проверено 16 марта 2008 г.
  231. ^ «Классы и объекты (PHP 5)» . Группа PHP . Проверено 16 марта 2008 г.
  232. ^ «Клонирование объектов» . Группа PHP . Проверено 16 марта 2008 г.
  233. ^ «Видимость (Руководство PHP)» . theserverpages.com . 19 мая 2005 г. Архивировано из оригинала 24 сентября 2010 г. Проверено 26 августа 2010 г.
  234. ^ «Как работают компьютерные языки?» . Архивировано из оригинала 16 июля 2011 г. Проверено 4 ноября 2009 г.
  235. ^ Гилмор, В. Джейсон (23 января 2006 г.). Начало PHP и MySQL 5: от новичка до профессионала . Апресс. п. 43 . ISBN  1590595521 .
  236. ^ «[ГОЛОСОВАНИЕ] Интеграция Zend Optimizer+ в дистрибутив PHP» . news.php.net . Проверено 8 марта 2013 г.
  237. ^ «Альтернативный PHP-кеш» . PHP.net . Архивировано из оригинала 15 ноября 2013 г. Проверено 21 сентября 2013 г.
  238. ^ «На 98,5% (и на 16%) мы — «виртуальная машина хип-хопа» . hhvm.com . Декабрь 2013 года . Проверено 23 февраля 2014 г.
  239. ^ «Окончательные тесты PHP 5.6, 7.0, 7.1, 7.2 и 7.3 (2019)» . 14 января 2019 г. Проверено 19 апреля 2019 г.
  240. ^ Криль, Пол (20 сентября 2017 г.). «Забудьте о PHP! Вместо этого движок HHVM Facebook переключается на Hack» . Инфомир . Проверено 06 февраля 2019 г.
  241. ^ «Объявление об удалении GitHub поддержки HPHPc» . Гитхаб . Проверено 24 мая 2013 г.
  242. ^ «Лицензия PHP, версия 3.01» . Проверено 20 мая 2010 г.
  243. ^ «Лицензии свободного программного обеспечения, несовместимые с GPL» . Различные лицензии и комментарии к ним . Фонд свободного программного обеспечения . Проверено 3 января 2011 г.
  244. ^ «PHP: Список функций и методов – Руководство» . Группа PHP . Проверено 14 января 2015 г.
  245. ^ «Введение – Руководство» . php.net . 07.06.2013 . Проверено 13 июня 2013 г.
  246. ^ Дэррил Паттерсон (5 августа 2004 г.). «Упрощение бизнес-логики с помощью PHP DataObjects — O'Reilly Media» . IBM.com . Архивировано из оригинала 16 декабря 2014 года . Проверено 16 декабря 2014 г.
  247. ^ «ИБМ — США» . Проверено 16 декабря 2014 г.
  248. ^ «Пять распространенных проблем с базами данных PHP» . IBM.com . 01 августа 2006 г. Проверено 13 июня 2013 г.
  249. ^ «Справочники IBM — Разработка приложений PHP для серверов данных IBM» . redbooks.ibm.com . Проверено 16 декабря 2014 г.
  250. ^ «Журнал php[architect] — журнал для PHP-программистов» . www.phparch.com .
  251. ^ Крил, Пол (19 октября 2005 г.). «PHP завоевывает популярность на предприятиях, конкурируя с Java» . Инфомир . Архивировано из оригинала 13 июля 2014 года.
  252. ^ «Перекрестная ссылка: /PHP_5_4/ext/standard/» . php.net . Архивировано из оригинала 16 марта 2012 года . Проверено 16 декабря 2014 г.
  253. ^ «Разработка пользовательских расширений PHP» . devnewz.com . 9 сентября 2002 г. Архивировано из оригинала 18 февраля 2008 г. Проверено 25 февраля 2008 г.
  254. ^ «Почему Зефир?» . zephir-lang.com . 20 октября 2015 г. Проверено 14 декабря 2015 г.
  255. ^ «Кредиты PHP» . Проверено 16 декабря 2018 г.
  256. ^ «Изучите PHP посредством обучения PHP и сертификации PHP» . www.zend.com . Проверено 16 ноября 2020 г.
  257. ^ Уокер, Джеймс (13 декабря 2021 г.). «Что новый фонд PHP означает для будущего PHP» . Как компьютерщик . Проверено 26 ноября 2023 г.
  258. ^ «Новая жизнь PHP – PHP Foundation | Блог PhpStorm» . Блог JetBrains . 22 ноября 2021 г. Проверено 16 июня 2022 г.
  259. ^ «Фонд PHP: Отчет о влиянии и прозрачности 2022» . thephp.foundation . Проверено 27 ноября 2023 г.
  260. ^ Пронский, Роман (26 февраля 2024 г.). «Фонд PHP: отчет о влиянии и прозрачности 2023» . Фонд PHP . Проверено 1 апреля 2024 г.
  261. ^ Андерсон, Тим. «Фонд PHP создан для финансирования основных разработчиков» . www.theregister.com . Проверено 5 декабря 2023 г.
  262. ^ «Языки программирования: этот старый фаворит снова набирает популярность» . ЗДНЕТ . Проверено 5 декабря 2023 г.
  263. ^ «Выпущен PHP 8.1 с перечислениями, свойствами только для чтения и волокнами» . www.i-programmer.info . Проверено 5 декабря 2023 г.
  264. ^ «Пришло время PHP Foundation #StopBreakingPHP» . тронгейт ио . Проверено 27 ноября 2023 г.
  265. ^ «Совместимость WordPress 6.4 с PHP» . Сделать хостинг WordPress . 16 ноября 2023 г. Проверено 27 ноября 2023 г.
  266. ^ «ПХП» . Суверенный технологический фонд . Проверено 26 мая 2024 г.
  267. Перейти обратно: Перейти обратно: а б «Общие рекомендации по установке» . php.net . Проверено 22 сентября 2013 г.
  268. ^ «Архив новостей: Выпущен PHP 5.3.3!» . php.net . 22 июля 2010 г.
  269. ^ «Диспетчер процессов FastCGI (FPM)» . php.net . Проверено 22 сентября 2013 г.
  270. ^ «Использование командной строки: Введение» . php.net . Проверено 22 сентября 2013 г.
  271. ^ «Использование командной строки: отличия от других SAPI» . php.net . Проверено 22 сентября 2013 г.
  272. Перейти обратно: Перейти обратно: а б «Общие рекомендации по установке» . php.net . Проверено 22 сентября 2013 г.
  273. ^ «PHP: Apache 2.x в Microsoft Windows» . php.net . Архивировано из оригинала 26 сентября 2013 г. Проверено 22 сентября 2013 г.
  274. ^ «Использование командной строки: Введение» . php.net . Проверено 22 сентября 2013 г.
  275. ^ «Установка PHP-GTK 2» . php.net . Архивировано из оригинала 12 декабря 2013 г. Проверено 22 сентября 2013 г.
  276. ^ «AWS SDK для PHP» . aws.amazon.com . Проверено 6 марта 2014 г.
  277. ^ «Windows Azure SDK для PHP — мосты взаимодействия и лабораторный центр» . interoperabilitybridges.com . Архивировано из оригинала 20 марта 2014 г. Проверено 6 марта 2014 г.
  278. ^ «Конфигурация времени выполнения: Содержание» . php.net . Проверено 22 сентября 2013 г.
  279. ^ «Директивы php.ini: Список директив php.ini» . php.net . Проверено 22 сентября 2013 г.
  280. ^ «Конфигурация времени выполнения: файл конфигурации» . PHP.net . Проверено 22 сентября 2013 г.
  281. ^ «Директивы php.ini: Список разделов php.ini» . PHP.net . Проверено 22 сентября 2013 г.
  282. ^ «Конфигурация времени выполнения: где можно установить параметр конфигурации» . PHP.net . Проверено 22 сентября 2013 г.
  283. ^ «Ручная обработка изображений PHP и GD»; . php.net . Проверено 9 апреля 2011 г.
  284. ^ «Язык сценариев PHP на стороне сервера» . Университет Индианы . 04 апреля 2007 г. Архивировано из оригинала 21 января 2016 г. Проверено 25 февраля 2008 г.
  285. ^ «Технология JavaServer Pages — методы сравнения JavaServer Pages для серверного динамического контента» . Сан Микросистемс . Проверено 25 февраля 2008 г.
  286. ^ «Пять простых способов настроить приложение LAMP» . ИБМ . 25 января 2011 г.
  287. ^ «Ядро PHP: структура расширения» . PHP.net . Архивировано из оригинала 26 сентября 2013 г. Проверено 22 сентября 2013 г.
  288. ^ «Ядро PHP: расширение «счетчик» — продолжающийся пример» . PHP.net . Архивировано из оригинала 26 сентября 2013 г. Проверено 22 сентября 2013 г.
  289. ^ «Написание расширений, часть I: Введение в PHP и Zend» . Зенд Технологии . 01.03.2005. Архивировано из оригинала 24 сентября 2013 г. Проверено 22 сентября 2013 г.
  290. ^ «Написание расширений, часть II: параметры, массивы и ZVAL» . Зенд Технологии . 6 июня 2005 г. Архивировано из оригинала 26 сентября 2013 г. Проверено 22 сентября 2013 г.
  291. ^ «Написание расширений, часть II: Параметры, массивы и ZVAL (продолжение)» . Зенд Технологии . 6 июня 2005 г. Архивировано из оригинала 26 сентября 2013 г. Проверено 22 сентября 2013 г.
  292. ^ «Написание расширений, часть III: Ресурсы» . Зенд Технологии . 12 мая 2006 г. Архивировано из оригинала 26 сентября 2013 г. Проверено 22 сентября 2013 г.
  293. ^ «Обертывание классов C++ в расширение PHP» . Зенд Технологии . 22 апреля 2009 г. Архивировано из оригинала 20 сентября 2013 г. Проверено 22 сентября 2013 г.
  294. ^ «Расширение PHP с помощью C++?» . Переполнение стека . Проверено 22 сентября 2013 г.
  295. ^ «Как я могу использовать код C++ для взаимодействия с PHP?» . Переполнение стека . Проверено 22 сентября 2013 г.
  296. ^ Големон, Сара (2006). Расширение и встраивание PHP . Сэмс. ISBN  978-0-672-32704-9 .
  297. ^ «Запрос № 46919: Многопоточность» . PHP.net . Проверено 22 сентября 2013 г.
  298. ^ «pthreads: Введение (Руководство по PHP)» . PHP.net . Проверено 22 сентября 2013 г.
  299. ^ «PECL::Пакет::pthreads» . pecl.php.net . Проверено 9 февраля 2014 г.
  300. ^ «Руководство:Требования к установке#PHP» . МедиаВики. 25 января 2010 г. Проверено 26 февраля 2010 г. PHP — это язык программирования, на котором написан MediaWiki [...]
  301. ^ «О WordPress» . Проверено 26 февраля 2010 г. WordPress был [...] построен на PHP
  302. ^ Кемпкенс, Алекс. «Joomla! — система управления контентом для создания веб-сайтов и приложений» .
  303. ^ «PHP и Друпал» . Друпал.орг. 16 сентября 2007 г. Архивировано из оригинала 08 февраля 2010 г. Проверено 13 июня 2010 г.
  304. ^ "О" . Мудл.орг. Архивировано из оригинала 11 января 2010 г. Проверено 20 декабря 2009 г.
  305. ^ «Требования к серверу SilverStripe» . Архивировано из оригинала 28 ноября 2014 года . Проверено 13 октября 2014 г. SilverStripe требует PHP 5.3.2+.
  306. ^ Иде, Энди (31 января 2013 г.). «PHP просто растет и растет» . Проверено 1 апреля 2013 г.
  307. ^ «Статистика использования и рыночная доля PHP версии 4 для веб-сайтов, июль 2024 г.» . w3techs.com .
  308. Перейти обратно: Перейти обратно: а б «Статистика использования и рыночная доля PHP версии 5 для веб-сайтов, июль 2024 г.» . w3techs.com .
  309. ^ «Статистика использования и рыночная доля PHP версии 7 для веб-сайтов, июль 2024 г.» . w3techs.com .
  310. ^ «Статистика использования и рыночная доля PHP версии 8 для веб-сайтов, июль 2024 г.» . w3techs.com .
  311. ^ «Национальная база данных уязвимостей (NVD) по поиску статистики уязвимостей» . Проверено 22 ноября 2019 г.
  312. ^ «PHP: rfc:taint» . wiki.php.net .
  313. ^ «Заметки о совещании разработчиков, ноябрь 2005 г.» .
  314. ^ «Решение о режиме Taint, ноябрь 2007 г.» . Архивировано из оригинала 26 февраля 2009 г.
  315. ^ «Проект Hardened-PHP» . 15 августа 2008 г. Архивировано из оригинала 24 февраля 2019 г. Проверено 22 августа 2019 г.
  316. ^ «Безопасность: использование глобальных переменных регистрации» . Руководство по PHP . PHP.net. Архивировано из оригинала 27 сентября 2013 г. Проверено 22 сентября 2013 г.
  317. ^ «Волшебные цитаты» . Руководство по PHP . PHP.net. Архивировано из оригинала 8 февраля 2014 г. Проверено 17 января 2014 г.
  318. ^ « Директива конфигурации «движка»» . PHP: Конфигурация времени выполнения . PHP.net . Проверено 13 февраля 2014 г.
  319. ^ «Эксплойт безопасности PHP с изображениями GIF» . 22 июня 2007 г. Архивировано из оригинала 27 сентября 2013 г. Проверено 22 сентября 2013 г.
  320. ^ «Эксплойт безопасности PHP с изображениями GIF» . Блог классов PHP. 20 июня 2007 г. Проверено 22 сентября 2013 г.
  321. ^ «Передача вредоносного PHP через getimagesize()» . 04.06.2007. Архивировано из оригинала 21 сентября 2013 г. Проверено 22 сентября 2013 г.
  322. ^ « Директива конфигурации ‘enable_dl’» . PHP: Конфигурация времени выполнения . PHP.net . Проверено 13 февраля 2014 г.
  323. ^ «Ссылка на функцию PHP: dl()» . PHP.net . Проверено 22 сентября 2013 г.
  324. ^ «Мой хост не исправит свой троян» . Разговор о веб-хостинге . Проверено 22 сентября 2013 г.
  325. ^ Раз0р (25 января 2013 г.). «Форум Simple Machines <= 2.0.3 Сброс пароля администратора» . {{cite web}}: CS1 maint: числовые имена: список авторов ( ссылка )
  326. ^ Ниббл Безопасность. «TYPO3-SA-2010-020, TYPO3-SA-2010-022 ОБЪЯСНЕНИЕ» .
  327. ^ "Криптостойкость и небезопасное сравнение" . ahack.ru (in Russian). Archived from the original on 4 July 2017. {{cite web}}: CS1 maint: неподходящий URL ( ссылка )
  328. ^ Кравчик, Павел (2013). «Наиболее распространенные атаки на веб-приложения» . IPSec.pl. Архивировано из оригинала 15 апреля 2015 г. Проверено 15 апреля 2015 г.
  329. ^ Кравчик, Павел (2013). «Итак, каковы «самые критичные» недостатки приложений? В новом рейтинге OWASP Top 10» . IPSec.pl . Проверено 15 апреля 2015 г.
  330. ^ «PHP: Random_int — Руководство» .
  331. ^ «PHP: Rand — Руководство» .
  332. ^ «PHP: Mt_rand — Руководство» .
  333. ^ Аргирос, Джордж; Киайас, Аггелос. «Я забыл ваш пароль: случайные атаки на PHP-приложения» . usenix.org . УСЕНИКС . Проверено 19 апреля 2024 г.
  334. ^ «Статистика использования и доля рынка PHP для веб-сайтов, июль 2024 г.» . w3techs.com . Проверено 23 июля 2024 г.
  335. ^ «Поддержка PHP для PHP 7.2–8.0 | PHP LTS | Zend от Perforce» . Проверено 23 мая 2024 г.
  336. ^ «PHP: Поддерживаемые версии» . www.php.net .
  337. ^ «Поддержка PHP для PHP 7.2–8.0 | PHP LTS | Zend от Perforce» . Проверено 23 мая 2024 г.

Дальнейшее чтение

[ редактировать ]
Послушайте эту статью ( 35 минут )
Продолжительность: 35 минут и 4 секунды.
Разговорная иконка Википедии
Этот аудиофайл был создан на основе редакции этой статьи от 23 ноября 2011 г. ( 23 ноября 2011 г. ) и не отражает последующие изменения.
[ редактировать ]
Arc.Ask3.Ru: конец переведенного документа.
Arc.Ask3.Ru
Номер скриншота №: a2a98ce61f714be9fe6aa2a5e25b81a7__1721828880
URL1:https://arc.ask3.ru/arc/aa/a2/a7/a2a98ce61f714be9fe6aa2a5e25b81a7.html
Заголовок, (Title) документа по адресу, URL1:
PHP - Wikipedia
Данный printscreen веб страницы (снимок веб страницы, скриншот веб страницы), визуально-программная копия документа расположенного по адресу URL1 и сохраненная в файл, имеет: квалифицированную, усовершенствованную (подтверждены: метки времени, валидность сертификата), открепленную ЭЦП (приложена к данному файлу), что может быть использовано для подтверждения содержания и факта существования документа в этот момент времени. Права на данный скриншот принадлежат администрации Ask3.ru, использование в качестве доказательства только с письменного разрешения правообладателя скриншота. Администрация Ask3.ru не несет ответственности за информацию размещенную на данном скриншоте. Права на прочие зарегистрированные элементы любого права, изображенные на снимках принадлежат их владельцам. Качество перевода предоставляется как есть. Любые претензии, иски не могут быть предъявлены. Если вы не согласны с любым пунктом перечисленным выше, вы не можете использовать данный сайт и информация размещенную на нем (сайте/странице), немедленно покиньте данный сайт. В случае нарушения любого пункта перечисленного выше, штраф 55! (Пятьдесят пять факториал, Денежную единицу (имеющую самостоятельную стоимость) можете выбрать самостоятельно, выплаичвается товарами в течение 7 дней с момента нарушения.)