Difference between revisions of "PHP"

From CNM Wiki
Jump to: navigation, search
(Created page with "'''PHP''': '''Hypertext Preprocessor''' (or simply PHP) is a server-side scripting language designed for Web development. PHP originally stood for Personal Home Page,...")
 
Line 1: Line 1:
'''PHP''': '''Hypertext Preprocessor''' (or simply PHP) is a [[server-side scripting]] language designed for [[Web development]]. PHP originally stood for Personal Home Page, but it now stands for the [[recursive initialism]] PHP: ''Hypertext Preprocessor''.
+
'''PHP''': '''Hypertext Preprocessor''' (or simply PHP) is a [[server-side scripting]] language originally created for [[web development]], specifically, to produce dynamic [[webpage]]s, while compiling various parts of [[HTML]] and other [[web language]]s into one [[web document]]. Initially, PHP stood for Personal Home Page, but it now stands for the [[recursive initialism]] PHP: ''Hypertext Preprocessor''.
  
 
PHP code may be embedded into [[HTML code]], or it can be used in combination with various [[web template systems]], web content management systems, and [[web frameworks]]. PHP code is usually processed by a PHP [[interpreter]] implemented as a module in the web server or as a Common Gateway Interface (CGI) executable. The web server combines the results of the interpreted and executed PHP code, which may be any type of data, including images, with the generated web page. PHP code may also be executed with a command-line interface (CLI) and can be used to implement standalone graphical applications.
 
PHP code may be embedded into [[HTML code]], or it can be used in combination with various [[web template systems]], web content management systems, and [[web frameworks]]. PHP code is usually processed by a PHP [[interpreter]] implemented as a module in the web server or as a Common Gateway Interface (CGI) executable. The web server combines the results of the interpreted and executed PHP code, which may be any type of data, including images, with the generated web page. PHP code may also be executed with a command-line interface (CLI) and can be used to implement standalone graphical applications.
Line 5: Line 5:
 
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 almost every operating system and platform, free of charge.[8]
 
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 almost every operating system and platform, free of charge.[8]
  
The PHP language evolved without a written formal specification or standard until 2014, with the original implementation acting as the de facto standard which other implementations aimed to follow
+
The PHP language evolved without a written formal specification or standard until 2014, with the original implementation acting as the de facto standard which other implementations aimed to follow.

Revision as of 13:36, 16 December 2020

PHP: Hypertext Preprocessor (or simply PHP) is a server-side scripting language originally created for web development, specifically, to produce dynamic webpages, while compiling various parts of HTML and other web languages into one web document. Initially, PHP stood for Personal Home Page, but it now stands for the recursive initialism PHP: Hypertext Preprocessor.

PHP code may be embedded into HTML code, or it can be used in combination with various web template systems, web content management systems, and web frameworks. PHP code is usually processed by a PHP interpreter implemented as a module in the web server or as a Common Gateway Interface (CGI) executable. The web server combines the results of the interpreted and executed PHP code, which may be any type of data, including images, with the generated web page. PHP code may also be executed with a command-line interface (CLI) and can be used to implement standalone graphical applications.

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 almost every operating system and platform, free of charge.[8]

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