PHP Guide, Meaning , Facts, Information and Description
- For the "PHP" Cold-war history project, see Parallel History Project.
PHP's ease of use and similarity with the most common structured programming languages – most notably C and Perl (and from version 5, Java) – allows most experienced programmers to start developing complex applications with a minimal learning curve. It also enables experienced developerss to get involved with dynamic web content applications without having to learn a whole new set of functions and practices.
One of the more attractive parts of PHP is that it is more than just a scripting language. Thanks to its modular design, PHP is also used to develop GUI applications (using PHP-GTK), and can be used from the command line just like Perl or Python.
PHP allows easy interaction with a large number of relational database systems, such as Oracle, DB2, MySQL, and PostgreSQL, while maintaining a simple and straightforward syntax. PHP runs on most major operating systems, including UNIX, Linux, Windows, and Mac OS X, and can interact with many major web servers. The official PHP website contains extensive documentation. The Linux, Apache, MySQL, PHP (LAMP) architecture has become very popular in the Web industry as a way of deploying inexpensive, reliable, scalable, secure web applications. (The 'P' in LAMP can also stand for Perl or Python.)
PHP is the result of the collective efforts of many contributors. It is licensed under a BSD-style license, the PHP license. PHP, from version 4, has been powered by the Zend engine.
| Table of contents |
|
2 Popularity 3 Code example 4 PHP's libraries 5 Object-oriented programming 6 Criticism of PHP 7 Support 8 Software built with PHP 9 External links |
History
PHP was originally designed as a small set of Perl scripts, followed by a rewritten set of CGI binaries written in C by Rasmus Lerdorf in 1994 to display his résumé and collect some data, such as how many hits it was generating. Others first used "Personal Home Page Tools" in 1995, when Lerdorf had combined it with his own Form Interpreter to create PHP/FI. Zeev Suraski and Andi Gutmans, two Israeli developers of the Technion - Israel Institute of Technology, rewrote the parser in 1997 and formed the base of PHP 3. They also changed the name to its current recursive form. After months in beta, the development team officially released PHP/FI 2 in November 1997. Public testing of PHP 3 began immediately 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 (a page at www.zend.com [1] states that PHP 3 was powered by Zend Engine 0.5). They also founded Zend Technologies in Ramat Gan, Israel which has since overseen the PHP advances. In May 2000, PHP 4, powered by the Zend Engine 1.0, was released. On July 13, 2004, PHP 5 was released, powered by Zend Engine II (formerly known as Zend Engine 2).
Popularity
PHP is currently one of the most popular server-side scripting systems on the Web. It has been widely adopted since the release of version 4, which was the first version powered by the powerful Zend Engine.
One major part of PHP which has helped it become popular is that it is a very loose language; in particular, it is dynamically typed. That is, the rules aren't as strict with variables—they don't have to be declared and they can hold any type of object. Further, unlike many other languages (like C++ and Java), arrays are able to hold objects of varying types, including other arrays. All of this "looseness" makes it very easy to do many things.
According to Netcraft's April 2002 survey, PHP is now the most deployed server-side scripting language, running on around 9 of the 37 million domains in their survey. This is confirmed by PHP's own figures, which show PHP usage (measured on a per-domain basis) growing at around 5% per month. In May 2003, almost 13 million domains were using PHP, based on the same source.[1]
Due to PHP's popularity, a new breed of programmer has emerged – one who is only familiar with PHP, which in turn forced open the door toward a command line interface for PHP, along with support for GUI library such as GTK+ and text mode libraries like ncurses and newt. This is a major step for PHP, because it represents its beginning adoption as a genuine programming language (i.e. running autonomously on a stand-alone machine, as opposed to its original purpose of serving web pages to client machines from a server).
PHP has a wide variety of extensionss such as support for the Windows API, process management on UNIX-like operating systems, cURL, and the ZIP/gzip/bzip2/rar/lzf compression formats. Some of the more unusual features are PDF generation, on-the-fly Macromedia Flash generation, integration with Internet relay chat, generation of dynamic images (where you can change the content that the image has in it), and much more. Some additional extensions are available via the PHP Extension Community Library (PECL).
This is the present list of all officially documented libraries:
Code example
Here is an example that prints out the lyrics for the song 99 Bottles of Beer:
<?php
/*
* This is a comment. Other ways of commenting are // and # symbols.
* This kind of comment does not need stars (*) in the beginning
* of each line but including them is a common practice. // and # comments
* only comment the text that are after them in the same line and have no
* special ending character.
*/
/*
* First we define a new function called "plural".
* It will return an "s" if the argument passed to it was any other
* than number 1.
*/
function plural($number) {
return ($number != 1 ? "s" : "");
// The ternary operation above is a conditional structure similar to if-else: (condition ? true : false)
}
// We define a variable called $l to contain an HTML line break
// as well as a carriage return and line feed:
$l = "<br />\\r\
";
for ($i = 99; $i > 0; $i--) {
print "$i bottle" . plural($i) . " of beer on the wall,$l";
// We don't actually need a new print for each line. Let's see:
print "$i bottle" . plural($i) . " of beer.$l
Take one down, pass it around,$l" .
($i - 1 != 0 ? $i - 1 : "no more") .
" bottle" . plural($i - 1) . " of beer on the wall.$l$l";
/*
* PHP allows you to put strings on multiple lines, as long as
* it eventually finds a semicolon (;) to terminate it.
* A period (.) joins (concatenates) strings together.
* Variables, the $-symbol things, are parsed (interpolated)
* inside double quotation marks ("), but wouldn't be parsed
* inside single quotation marks ('). Functions, such as
* plural(), are not parsed inside any quotation marks.
*/
}
print "Go to the store,$l buy some more,$l 99 bottles of beer on the wall!";
?>
PHP's libraries
PHP, unlike ASP, has some of the largest free and open-source libraries included with the core build. PHP is a fundamentally Internet-aware system and as such, there are modules built in for accessing FTP servers, all manners of database servers, embedded SQL libraries like embedded MySQL and SQLite, LDAP servers and much more. In addition to this, many familiar C functions such as the printf family are all available in the standard PHP build.
Object-oriented programming
Up until version 3, PHP had no object-oriented features. In version 3 basic object functionality was added. The same semantics were implemented in PHP 4 as well as pass-by-reference and return-by-reference for objects but the implementation still lacked the powerful and useful features of other object-oriented languages like C++ and Java.
In version 5, which was released in July 2004, PHP's object-oriented functionality has been very much enhanced and is more robust and complete. Here is a summary of some of the changes in PHP 5 (powered by Zend Engine II):
- New Object Model — PHP's handling of objects has been completely rewritten, allowing for better performance and more features. In previous versions of PHP, objects were handled like primitive types (for instance integers and strings). The drawback of this method was that semantically the whole object was copied when a variable was assigned, or pass as a parameter to a method. In the new approach, objects are referenced by handle, and not by value (one can think of a handle as an object's identifier).
- Private and Protected Members — PHP 5 introduces private and protected member variables, they allow you to define the visibility of class properties.
- Private and Protected Methods — Private and protected methods are also introduced.
- Abstract Classes and Methods — PHP 5 also introduces abstract classes and methods. An abstract method only declares the method's signature and does not provide an implementation. A class that contains abstract methods needs to be declared abstract.
- Interfaces — A class may implement an arbitrary list of interfaces.
- Object Cloning — If the developer asks to create a copy of an object by using the reserved word clone, the Zend engine will check if a __clone() method has been defined or not. If not, it will call a default __clone() which will copy all of the object's properties. If a __clone() method is defined, then it will be responsible to set the necessary properties in the created object. For convenience, the engine will supply a function that imports all of the properties from the source object, so that they can start with a by-value replica of the source object, and only override properties that need to be changed.
- Unified Constructors — PHP 5 introduces a standard way of declaring constructor methods by calling them by the name __construct().
- Destructors — PHP 5 introduces a destructor concept similar to that of other object-oriented languages, such as Java: When the last reference to an object is destroyed, the object's destructor (a class method named __destruct() that receives no parameters) is called before the object is freed from memory.
- Exceptions — PHP 4 had no exception handling. PHP 5 introduces a exception model similar to that of other programming languages.
It is should be noted that the static method and class variable features in Zend Engine 2 do not work the way some expect. There is no vtable feature in the Engine, so the static variables are bound with a name at compile time instead of with a reference. This can lead to unexpected behavior, if you do not understand this.
Criticism of PHP
PHP is widely used and widely admired for the tasks it performs. Like any language, however, it has its detractors. Some of the more common criticisms of PHP are as follows:
Criticism of PHP also includes those general criticisms ascribed to other scripting programming languages and dynamically typed languages.
Support
Although the PHP development team does not provide programming help directly, there are many excellent help resources available for the novice PHP programmer. Worth mentioning are the PHP mailing lists (also available on PHP.net's news server), the Usenet group comp.lang.php, and the IRC channels #php and #phphelp on EFNet, IRCNet, DALnet and other networks. There is also a PHP user group registry. Other IRC channels include [irc://irc.freenode.net/php #php] and [irc://irc.freenode.net/php #phpfreaks] on freenode and also [irc://irc.invisionize.com/phpcafe #phpcafe] on irc.invisionize.com. Additionally, online forum communities have sprung up around PHP support, such as Devshed and PHPBuilder.
CMSformE,
Drupal,
Gallery Project,
Invision Power Board,
Moodle,
Mambo Open Source,
PhpLDAPadmin,
phpMyAdmin,
PHP-Nuke,
PostNuke,
phpPgAdmin,
PhpWiki,
PmWiki,
PostNuke,
PunBB,
Smarty,
Typo3,
UBB.threads,
vBulletin,
WordPress,
Xaraya,
XOOPS.
This is an Article on PHP. Page Contains Information, Facts Details or Explanation Guide About PHP Software built with PHP
The following is list of notable software developed using PHP that's not already noted above:External links
PHP homepage
Advocacy
Frameworks
Integrated development environments and debuggers
IDEs
Debuggers (all have profiling features)
Security
Tutorials and articles
