PHP This article is about the scripting language. For other uses, - TopicsExpress



          

PHP This article is about the scripting language. For other uses, see PHP (disambiguation). PHP PHP-logo.svg Paradigm(s) imperative, functional, object-oriented, procedural, reflective Designed by Rasmus Lerdorf Developer The PHP Group Appeared in 1995; 19 years ago[1] Stable release 5.5.13[2] / May 29, 2014; 17 days ago Preview release 5.6.0beta4[3] / June 5, 2014; 10 days ago Typing discipline Dynamic, weak Major implementations Zend Engine, Phalanger, Quercus, Project Zero, HipHop, HHVM, Parrot Influenced by Perl, C, C++, Java, Tcl[1] Influenced Hack Implementation language C OS Cross-platform License PHP License Filename extension(s) .php, .phtml, .php4, .php3, .php5, .phps Website php.net PHP Programming at Wikibooks PHP is a server-side scripting language designed for web development but also used as a general-purpose programming language. As of January 2013, PHP was installed on more than 240 million websites (39% of those sampled) and 2.1 million web servers.[4] Originally created by Rasmus Lerdorf in 1994,[5] the reference implementation of PHP is now produced by The PHP Group.[6] While PHP originally stood for Personal Home Page,[5] it now stands for PHP: Hypertext Preprocessor, a recursive backronym.[7] PHP code can be simply mixed with HTML code, or it can be used in combination with various templating engines and web frameworks. PHP code is usually processed by a PHP interpreter, which is usually implemented as a web servers native module or a Common Gateway Interface (CGI) executable. After the PHP code is interpreted and executed, the web server sends resulting output to its client, usually in form of a part of the generated web page – for example, PHP code can generate a web pages HTML code, an image, or some other data. PHP has also evolved to include a command-line interface (CLI) capability and can be used in standalone graphical applications.[8] PHP is free software released under the PHP License. PHP has been widely ported and can be deployed on most web servers on almost every operating system and platform, free of charge.[9] Contents 1 History 1.1 PHP 6 and Unicode 1.2 Release history 2 Syntax 2.1 Data types 2.2 Functions 2.3 Objects 3 Implementations 4 Licensing 5 Development and community 6 Installation and configuration 7 Use 8 Security 9 See also 10 References 11 External links History Rasmus Lerdorf, who wrote the original Common Gateway Interface (CGI) component, together with Andi Gutmans and Zeev Suraski, who rewrote the parser that formed PHP 3. PHP development began in 1994 when the developer Rasmus Lerdorf wrote a series of Common Gateway Interface (CGI) Perl scripts, which he used to maintain his personal homepage. The tools performed tasks such as displaying his résumé and recording his web traffic.[6][10][11] He rewrote these scripts in C for performance reasons, extending them to add the ability to work with web forms and to communicate with databases, and called this implementation Personal Home Page/Forms Interpreter or PHP/FI. PHP/FI could be used to build simple, dynamic web applications. Lerdorf initially announced the release of PHP/FI as Personal Home Page Tools (PHP Tools) version 1.0 publicly to accelerate bug location and improve the code, on the Usenet discussion group comp.infosystems.authoring.cgi on June 8, 1995.[12][13] This release already had the basic functionality that PHP has as of 2013. This included Perl-like variables, form handling, and the ability to embed HTML. The syntax resembled that of Perl but was simpler, more limited and less consistent.[6] Early PHP was not intended to be a new programming language, and 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.[14] A development team began to form and, after months of work and beta testing, officially released PHP/FI 2 in November 1997. One criticism of PHP is that it was not originally designed, but instead it was developed organically;[14] among other things, this has led to inconsistent naming of functions and inconsistent ordering of their parameters.[15] In some cases, the function names were chosen to match the lower-level libraries which PHP was wrapping,[16] 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.[17] Zeev Suraski and Andi Gutmans rewrote the parser in 1997 and formed the base of PHP 3, changing the languages name to the recursive acronym PHP: Hypertext Preprocessor.[6] Afterwards, public testing of PHP 3 began, and the official launch came in June 1998. Suraski and Gutmans then started a new rewrite of PHPs core, producing the Zend Engine in 1999.[18] They also founded Zend Technologies in Ramat Gan, Israel.[6] On May 22, 2000, PHP 4, powered by the Zend Engine 1.0, was released.[6] As of August 2008 this branch reached version 4.4.9. PHP 4 is no longer under development nor will any security updates be released.[19][20] On July 13, 2004, PHP 5 was released, powered by the new Zend Engine II.[6] 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.[21] In 2008 PHP 5 became the only stable version under development. Late static binding had been missing from PHP and was added in version 5.3.[22][23] Many high-profile open-source projects ceased to support PHP 4 in new code as of February 5, 2008, because of the GoPHP5 initiative,[24] provided by a consortium of PHP developers promoting the transition from PHP 4 to PHP 5.[25][26] PHP interpreters are 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.[27] For the PHP versions 5.3 and 5.4, the only available Microsoft Windows binary distributions were 32-bit x86 builds,[28][29] 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.[30] PHP 6 and Unicode PHP received mixed reviews due to lacking native Unicode support at the core language level.[31][32] 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.[33] 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.[34] 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.[35] 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 containing most remaining non-Unicode features from PHP 6, such as traits and closure re-binding.[36] Initial hopes were that a new plan would be formed for Unicode integration, but as of 2014 none has been adopted. During the years before the release of PHP 5.3 and 5.4, some books were published based on the expected feature set of PHP 6.0, including both the Unicode work and the features which were later backported to other releases. There is therefore some debate over whether a new major version of PHP, with or without Unicode support, should be called PHP 6, or if the version should be skipped to avoid confusion. Release history Key Color Meaning Development Red Old release No development Yellow Stable release Security fixes Green Stable release Bug and security fixes Blue Future release New features Version Release date Supported until[37] Notes 1.0 8 June 1995 Officially called Personal Home Page Tools (PHP Tools). This is the first use of the name PHP.[6] 2.0 1 November 1997 3.0 6 June 1998 20 October 2000 Development moves from one person to multiple developers. Zeev Suraski and Andi Gutmans rewrite the base for this version.[6] 4.0 22 May 2000 23 January 2001 Added more advanced two-stage parse/execute tag-parsing system called the Zend engine.[38] 4.1 10 December 2001 12 March 2002 Introduced superglobals ($_GET, $_POST, $_SESSION, etc.)[38] 4.2 22 April 2002 6 September 2002 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.[38] 4.3 27 December 2002 31 March 2005 Introduced the command-line interface (CLI), to supplement the CGI.[38][39] 4.4 11 July 2005 7 August 2008 Fixed a memory corruption bug, which required breaking binary compatibility with extensions compiled against PHP version 4.3.x.[40] 5.0 13 July 2004 5 September 2005 Zend Engine II with a new object model.[41] 5.1 24 November 2005 24 August 2006 Performance improvements with introduction of compiler variables in re-engineered PHP Engine.[41] Added PHP Data Objects (PDO) as a consistent interface for accessing databases.[42] 5.2 2 November 2006 6 January 2011 Enabled the filter extension by default. Native JSON support.[41] 5.3 30 June 2009 July 2014[43] Namespace support; late static bindings, Jump label (limited goto), Native closures, Native PHP archives (phar), garbage collection for circular references, improved Windows support, sqlite3, mysqlnd as a replacement for libmysql as underlying library for the extensions that work with MySQL, fileinfo as a replacement for mime_magic for better MIME support, the Internationalization extension, and deprecation of ereg extension. 5.4 1 March 2012 1 March 2015[44] 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.[45] Several improvements to existing features, performance and reduced memory requirements. 5.5 20 June 2013 20 June 2016[44] Support for generators, finally blocks for exceptions handling, OpCache (based on Zend Optimizer+) bundled in official distribution.[46] 5.6 No date set 3 years after release[44] Constant scalar expressions, variadic functions, argument unpacking, new exponentiation operator, extensions of the use operator, new phpdbg debugger as a SAPI module, and other smaller improvements.[47] Beginning on June 28, 2011, the PHP Group began following a timeline for when new versions of PHP will be released.[44] Under this timeline, at least one release should occur every month. Once per year, a minor release should occur which can include new features. Every minor release should at least have 2 years of security and bug fixes, followed by at least 1 year of only security fixes, for a total of a 3 year release process for every minor release. No new features (unless small and self-contained) will be introduced into a minor release during the 3-year release process. Syntax Main article: PHP syntax and semantics The following Hello world program is written in PHP code embedded in an HTML document: PHP Test However, as PHP does not need to be embedded in HTML or used with a web server, the simplest version of a Hello World program can be written like this, with the closing tag omitted as preferred in files containing pure PHP code[48] (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):[49][50][51] to close PHP sections. and delimiters are also available, as are the shortened forms as well as ASP-style short forms firstName = $firstName; $this->lastName = $lastName; } public function greet() { return Hello, my name is . $this->firstName . (($this->lastName != ) ? ( . $this->lastName) : ) . .; } public static function staticGreet($firstName, $lastName) { return Hello, my name is . $firstName . . $lastName . .; } } $he = new Person(John, Smith); $she = new Person(Sally, Davis); $other = new Person(iAmine); echo $he->greet(); // prints Hello, my name is John Smith. echo ; echo $she->greet(); // prints Hello, my name is Sally Davis. echo ; echo $other->greet(); // prints Hello, my name is iAmine. echo ; echo Person::staticGreet(Jane, Doe); // prints Hello, my name is Jane Doe. 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.[70] Objects of the same type have access to each others private and protected members even though they are not the same instance. PHPs member visibility features have sometimes been described as highly useful.[71] However, they have also sometimes been described as at best irrelevant and at worst positively harmful.[72] Implementations PHP source code is compiled on-the-fly to an internal format that can be executed by the PHP engine, which works as an interpreter.[73][74] 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 engines internal format by using a PHP compiler. Code optimizers aim to enhance the performance of the compiled code by reducing its size, merging redundant instructions and making other changes that can reduce the execution time. With PHP, there are often opportunities for code optimization.[75] An example of a code optimizer is the eAccelerator PHP extension. Another approach for reducing compilation overhead for PHP servers is using an opcode cache. Opcode caches work 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.[76] Another example of a widely used opcode cache is the Alternative PHP Cache (APC), which is available as a PECL extension.[77] The PHP language was originally implemented as an interpreter, and this is still the most popular implementation. Several compilers have been developed which decouple the PHP language from the interpreter. Advantages of compilation include better execution speed, static analysis, and improved interoperability with code written in other languages.[78] Notable PHP compilers include the following: HipHop Virtual Machine (HHVM) – 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.[79] Parrot – a virtual machine designed to run dynamic languages efficiently; Pipp transforms the PHP source code into the Parrot intermediate representation, which is then translated into the Parrots bytecode and executed by the virtual machine. Phalanger – compiles PHP into Common Intermediate Language (CIL) bytecode 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 favor 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.[80] Licensing PHP is free software released under the PHP License, which stipulates that:[81] 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 use of the name PHP makes it incompatible with the GNU General Public License (GPL).[82] Development and community PHP includes free and open source libraries with the core build. PHP is a fundamentally Internet-aware system with modules built in for accessing File Transfer Protocol (FTP) servers, many database servers, embedded SQL libraries such as embedded PostgreSQL, MySQL, Microsoft SQL Server and SQLite, LDAP servers, and others. Many functions familiar to C programmers such as those in the stdio family are available in the standard PHP build.[83] PHP allows developers to write extensions in C to add functionality to the PHP language. These can then be compiled into PHP or loaded dynamically at runtime. 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 features include integration with IRC, dynamic generation of images and Adobe Flash content, and even speech synthesis. The languages core functions such as those dealing with strings and arrays are also implemented as an extension.[84] The PHP Extension Community Library (PECL) project is a repository for extensions to the PHP language.[85] PHP Data Objects (PDO) is an interface for accessing databases.[86][87][88][89][90][91][92] Zend Technologies provides a certification exam for programmers to become certified PHP developers. Installation and configuration There are two primary ways for adding support for PHP to a web server – as a native web server module, or as a CGI executable. PHP has a direct module interface called Server Application Programming Interface (SAPI), which is supported by many web servers including Apache HTTP Server, Microsoft IIS, Netscape (now defunct) and iPlanet. Some other web servers, such as OmniHTTPd, support the Internet Server Application Programming Interface (ISAPI), which is a Microsofts web server module interface. If PHP has no module support for a web server, it can always be used as a Common Gateway Interface (CGI) or FastCGI processor; in that case, the web server is configured to use PHPs CGI executable to process all requests to PHP files.[93] PHP-FPM (FastCGI Process Manager) is an alternative FastCGI implementation for PHP, bundled with the official PHP distribution since version 5.3.3.[94] When compared to the older FastCGI implementation, it contains some additional features, mostly useful for heavily loaded web servers.[95] When using PHP for command-line scripting, a PHP command-line interface (CLI) executable is needed. PHP supports a CLI SAPI as of PHP 4.3.0.[96] The main focus of this SAPI is developing shell applications using PHP. There are quite a few differences between the CLI SAPI and other SAPIs, although they do share many of the same behaviors.[97] PHP can also be used for writing desktop graphical user interface (GUI) applications, by using the PHP-GTK extension. PHP-GTK is not included in the official PHP distribution,[93] and as an extension it can be used only with PHP versions 5.1.0 and newer. The most common way of installing PHP-GTK is compiling it from the source code.[98] When PHP is installed and used in cloud environments, software development kits (SDKs) are provided for using cloud-specific features. For example: Amazon Web Services provides the AWS SDK for PHP[99] Windows Azure can be used with the Windows Azure SDK for PHP.[100] Numerous configuration options are supported, affecting both core PHP features and extensions.[101][102] Configuration file php.ini is searched for in different locations, depending on the way PHP is used.[103] The configuration file is split into various sections,[104] while some of the configuration options can be also set within the web server configuration.[105] Use A broad overview of the LAMP software bundle, displayed here together with Squid. PHP is a general-purpose scripting language that is especially suited to server-side web development where PHP generally runs on a web server. Any PHP code in a requested file is executed by the PHP runtime, usually to create dynamic web page content or dynamic images used on websites or elsewhere.[106] It can also be used for command-line scripting and client-side graphical user interface (GUI) applications. PHP can be deployed on most web servers, many operating systems and platforms, and can be used with many relational database management systems (RDBMS). Most web hosting providers support PHP for use by their clients. It is available free of charge, and the PHP Group provides the complete source code for users to build, customize and extend for their own use.[9] PHP acts primarily as a filter,[107] taking input from a file or stream containing text and/or PHP instructions and outputting another stream of data. Most commonly the output will be HTML, although it could be JSON, XML or binary data such as image or audio formats. Since PHP 4, the PHP parser compiles input to produce bytecode for processing by the Zend Engine, giving improved performance over its interpreter predecessor.[108] Originally designed to create dynamic web pages, PHP now focuses mainly on server-side scripting,[109] and it is similar to other server-side scripting languages that provide dynamic content from a web server to a client, such as Microsofts ASP.NET, Sun Microsystems JavaServer Pages,[110] and mod_perl. PHP has also attracted the development of many software frameworks that provide building blocks and a design structure to promote rapid application development (RAD). Some of these include PRADO, CakePHP, Symfony, CodeIgniter, Laravel, Yii Framework, and Zend Framework, offering features similar to other web application frameworks. The LAMP architecture has become popular in the web industry as a way of deploying web applications.[111] PHP is commonly used as the P in this bundle alongside Linux, Apache and MySQL, although the P may also refer to Python, Perl, or some mix of the three. Similar packages, WAMP and MAMP, are also available for Windows and OS X, with the first letter standing for the respective operating system. Although both PHP and Apache are provided as part of the Mac OS X base install, users of these packages seek a simpler installation mechanism that can be more easily kept up to date. As of April 2007, over 20 million Internet domains had web services hosted on servers with PHP installed and mod_php was recorded as the most popular Apache HTTP Server module.[112] As of October 2010, PHP was used as the server-side programming language on 75% of all websites whose server-side programming language was known[113] (as of February 2014, the percentage had reached 82%[113]), and PHP was the most-used open source software within enterprises.[114] Web content management systems written in PHP include MediaWiki,[115] Joomla, eZ Publish, SilverStripe,[116] WordPress,[117] Drupal,[118] Moodle,[119] the user-facing portion of Facebook,[120] and Digg.[121] For specific and more advanced usage scenarios, PHP offers a well defined and documented way for writing custom extensions in C or C++.[122][123][124][125][126][127][128] Besides extending the language itself in form of additional libraries, extensions are providing a way for improving execution speed where it is critical and there is room for improvements by using a true compiled language.[129][130] PHP also offers well defined ways for embedding itself into other software projects. That way PHP can be easily used as an internal scripting language for another project, also providing tight interfacing with the projects specific internal data structures.[131] PHP received mixed reviews due to lacking support for multithreading at the core language level,[132] though using threads is made possible by the pthreads PECL extension.[133][134] Security In 2013, 9% of all vulnerabilities listed by the National Vulnerability Database were linked to PHP;[135] historically, about 30% of all vulnerabilities listed since 1996 in this database are linked to PHP. Technical security flaws of the language itself or of its core libraries are not frequent (22 in 2009, about 1% of the total although PHP applies to about 20% of programs listed).[136] Recognizing that programmers make mistakes, some languages include taint checking to automatically detect the lack of input validation which induces many issues. Such a feature is being developed for PHP,[137] but its inclusion into a release has been rejected several times in the past.[138][139] There are advanced protection patches such as Suhosin and Hardening-Patch, especially designed for web hosting environments.[140] Security vulnerabilities can be created by certain language features, induced by some of the historically default values for their associated runtime settings. Among these settings, magic_quotes_gpc and register_globals[141] configuration directives are the best known; the latter made any URL parameters become PHP variables, opening a path for serious security vulnerabilities by allowing an attacker to set the value of any uninitialized global variable and interfere with the execution of a PHP script. Support for magic quotes and register globals has been deprecated as of PHP 5.3.0, and removed as of PHP 5.4.0.[141][142] Another example for the runtime settings vulnerability comes from failing to disable PHP execution (via engine configuration directive)[143] for the directory where uploaded images are stored; leaving the default settings can result in execution
Posted on: Mon, 16 Jun 2014 10:12:33 +0000

Trending Topics



Recently Viewed Topics




© 2015