Thursday, December 5, 2013

Zend & PHP

PHP language engine is name zend, which refers to PHP's central core. The term PHP refer to the complete system as it appears to the outside world. While this might sound a bit confusing, is's not that complicated.

To run a PHP script at any Web Server, three components are required.

  1. An interpreter that analyzes PHP code snippets, translate them to something the CPU understands check the translation for any kind of error and finally passes it to the CPU for execution.
  2. A functiolity section of the interpreter, which implements the functiolity of PHP 
  3. An interface sections that talk to web sever  

PHP Attribute can be summarized as follows:
  • PHP stand for hypertext preprocessor
  • PHP is a Web server-side scripting language 
  • PHP script are executed exclusively on the web server their output which is straight HTML is return to a client browser
  • PHP support many database 
  • PHP is a open source software 
  • PHP is free to download and use

No comments: