PHP

From Wikipedia, the free encyclopedia

  (Redirected from Php)
Jump to: navigation, search
PHP
PHP
Usual file extensions .php, .phtml .php5 .phps
Paradigm imperative, object-oriented
Appeared in 1995 (1995)[1]
Designed by Rasmus Lerdorf
Developer The PHP Group
Stable release 5.2.12 / 5.3.1 (5.2.12: 2009-12-17; 28 days ago / 5.3.1: 2009-11-19; 56 days ago)
Preview release 6.0.0-dev[2]
Typing discipline Dynamic, weak
Major implementations Zend Engine, Roadsend PHP, Phalanger, Quercus, Project Zero
Influenced by C, Perl, Java, C++, Tcl[1]
Influenced PHP4Delphi, Falcon
Programming language C
OS Cross-platform
License PHP License
Website http://www.php.net/

PHP is a widely used, general-purpose scripting language that was originally designed for web development to produce dynamic web pages. For this purpose PHP code is embedded into the HTML source document and interpreted by a web server with a PHP processor module, which generates the web page document. As a general-purpose programming language, PHP code is processed by an interpreter application in command line mode performing desired operating system operations and producing program output on its standard output channel. It may also function as a graphical application. PHP is available as a processor for most modern web servers and as standalone interpreter on almost every operating system and computing platform.

PHP was originally created by Rasmus Lerdorf in 1995[1] and has been in continuous development ever since. The main implementation of PHP is now produced by The PHP Group and serves as the de facto standard for PHP as there is no formal specification.[3] PHP is free software released under the PHP License, which is incompatible with the GNU General Public License (GPL) because of restrictions on the use of the term PHP.[4]

PHP originally was the acronym for personal home page[citation needed], but was re-coined as a recursive initialism for PHP: Hypertext Preprocessor.

Contents

[edit] History

Rasmus Lerdorf, who wrote the original Common Gateway Interface component, Andi Gutmans and Zeev Suraski, who rewrote the parser that formed PHP 3

PHP originally stood for personal home page.[3] It began in 1994 as a set of Common Gateway Interface (CGI) binaries written in the C programming language by the Danish/Greenlandic programmer Rasmus Lerdorf.[5][6] Lerdorf initially created these Personal Home Page Tools to replace a small set of Perl scripts he had been using to maintain his personal homepage. The tools were used to perform tasks such as displaying his résumé and recording how much traffic his page was receiving.[3] He combined these binaries with his Form Interpreter to create PHP/FI, which had more functionality. PHP/FI included a larger implementation for the C programming language and could communicate with databases, enabling the building of simple, dynamic web applications. Lerdorf released PHP publicly on June 8, 1995 to accelerate bug location and improve the code.[7] This release was named PHP version 2 and already had the basic functionality that PHP has today. This included Perl-like variables, form handling, and the ability to embed HTML. The syntax was similar to Perl but was more limited, simpler, and less consistent.[3]

Zeev Suraski and Andi Gutmans, two Israeli developers at the Technion IIT, rewrote the parser in 1997 and formed the base of PHP 3, changing the language's name to the recursive initialism PHP: Hypertext Preprocessor.[3] The development team officially released PHP/FI 2 in November 1997 after months of beta testing. 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.[8] They also founded Zend Technologies in Ramat Gan, Israel.[3]

On May 22, 2000, PHP 4, powered by the Zend Engine 1.0, was released.[3] As of August, 2008 this branch is up to version 4.4.9. PHP 4 is no longer under development nor will any security updates be released.[9][10] On July 13, 2004, PHP 5 was released, powered by the new Zend Engine II.[3] PHP 5 included new features such as improved support for object-oriented programming, the PHP Data Objects extension (which defines a lightweight and consistent interface for accessing databases), and numerous performance enhancements.[11] In 2008, PHP 5 became the only stable version under development. Late static binding has been missing from PHP and has been added in version 5.3.[12][13] PHP 6 is under development alongside PHP 5. Major changes include the removal of register_globals,[14] magic quotes, and safe mode.[9][15] The reason for the removals was that register_globals had given way to security holes, and magic quotes had an unpredictable nature, and was best avoided. Instead, to escape characters, magic quotes may be substituted with the addslashes() function, or more appropriately an escape mechanism specific to the database vendor itself like mysql_real_escape_string() for MySQL. Functions that will be removed in PHP 6 have been deprecated in PHP 5.3 and will produce a warning if used.[16]

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

PHP currently does not have native support for Unicode or multibyte strings; Unicode support will be included in PHP 6 and will allow strings as well as class, method and function names to contain non-ASCII characters.[19][20]

PHP interpreters are available on both 32-bit and 64-bit operating systems, but on Microsoft Windows the only official distribution is a 32-bit implementation, requiring Windows 32-bit compatibility mode while using Internet Information Services (IIS) on a 64-bit Windows platform. As of PHP 5.3.0, experimental 64-bit versions are available for MS Windows.[21]

[edit] Release history

Meaning
Red Old release; not supported
Yellow Old release; still supported
Green Current release
Blue Future release
Major version Minor version Release date Notes
1 1.0.0 1995-06-08 Officially called "Personal Home Page Tools (PHP Tools)". This is the first use of the name "PHP".[3]
2 2.0.0 1997-11-01 Considered by its creator as the "fastest and simplest tool" for creating dynamic web pages.[3]
3 3.0.0 1998-06-06 Development moves from one person to multiple developers. Zeev Suraski and Andi Gutmans rewrite the base for this version.[3]
4 4.0.0 2000-05-22 Added more advanced two-stage parse/execute tag-parsing system called the Zend engine.[22]
4.1.0 2001-12-10 Introduced 'superglobals' ($_GET, $_POST, $_SESSION, etc.)[22]
4.2.0 2002-04-22 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.[22]
4.3.0 2002-12-27 Introduced the CLI, in addition to the CGI.[22][23]
4.4.0 2005-07-11 Added man pages for phpize and php-config scripts.[22]
4.4.8 2008-01-03 Several security enhancements and bug fixes. Was to be the end of life release for PHP 4. Security updates only until 2008-08-08, if necessary.[24]
4.4.9 2008-08-07 More security enhancements and bug fixes. The last release of the PHP 4.4 series.[25][26]
5 5.0.0 2004-07-13 Zend Engine II with a new object model.[27]
5.1.0 2005-11-24 Performance improvements with introduction of compiler variables in re-engineered PHP Engine.[27]
5.2.0 2006-11-02 Enabled the filter extension by default.[27]
5.2.11 2009-09-16 Bug and security fixes.
5.2.12 2009-12-17 Over 60 bug fixes, including 5 security fixes.
5.3.0 2009-06-30 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.3.1 2009-11-19 Over 100 bug fixes, some of which were security fixes as well.
5.3.2 No date set
6 6.0.0 No date set Unicode support; removal of 'register_globals', 'magic_quotes' and 'safe_mode'; Alternative PHP Cache

[edit] Usage

PHP is a general-purpose scripting language that is especially suited for web development. 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. It can also be used for command-line scripting and client-side 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. 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.[28]

PHP primarily acts as a filter,[29] taking input from a file or stream containing text and/or PHP instructions and outputs another stream of data; most commonly the output will be HTML. Since PHP 4, the PHP parser compiles input to produce bytecode for processing by the Zend Engine, giving improved performance over its interpreter predecessor.[30]

Originally designed to create dynamic web pages, PHP now focuses mainly on server-side scripting,[31] and it is similar to other server-side scripting languages that provide dynamic content from a web server to a client, such as Microsoft's Active Server Pages, Sun Microsystems' JavaServer Pages,[32] and mod perl. PHP has also attracted the development of many frameworks that provide building blocks and a design structure to promote rapid application development (RAD). Some of these include CakePHP, Symfony, CodeIgniter, and Zend Framework, offering features similar to other web application frameworks.

The LAMP and WAMP architectures have become popular in the web industry as a way of deploying web applications. PHP is commonly used as the P in this bundle alongside Linux, Apache and MySQL, although the P may also refer to Python or Perl.

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.[33] Significant websites are written in PHP including the user-facing portion of Facebook,[34] Wikipedia (MediaWiki),[35] Yahoo!,[36] MyYearbook,[37] Digg, Joomla, WordPress, YouTube in its early stages, Drupal, Tagged[38] and Moodle [39].

[edit] Security

The National Vulnerability Database stores all vulnerabilities found in computer software. The overall proportion of PHP-related vulnerabilities on the database amounted to: 20% in 2004, 28% in 2005, 43% in 2006, 36% in 2007, and 35% in 2008.[40] Most of these PHP-related vulnerabilities can be exploited remotely: they allow hackers to steal or destroy data from data sources linked to the webserver (such as an SQL database), send spam or contribute to DoS attacks using malware, which itself can be installed on the vulnerable servers.

These vulnerabilities are caused mostly by not following best practice programming rules: technical security flaws of the language itself or of its core libraries are not frequent (23 in 2008, about 1% of the total). [41][42] Recognizing that programmers cannot be trusted, some languages include taint checking to detect automatically the lack of input validation which induces many issues. Such a feature is being developed for PHP,[43] but its inclusion in a release has been rejected several times in the past.[44][45]

Hosting PHP applications on a server requires a careful and constant attention to deal with these security risks.[46] There are advanced protection patches such as Suhosin and Hardening-Patch, especially designed for web hosting environments.[47] Installing PHP as a CGI binary rather than as an Apache module is the preferred method for added security.[citation needed]

[edit] Syntax

<html>
    <head>
        <title>PHP Test</title>
    </head>
    <body>
        <?php echo '<p>Hello World</p>'; ?>
    </body>
</html>

PHP code embedded within HTML

PHP only parses code within its delimiters. Anything outside its delimiters is sent directly to the output and is not processed by PHP, however, non-PHP text is still subject to control structures described within PHP code. The most common delimiters are <?php to open and ?> to close PHP sections. <script language="php"> and </script> delimiters are also available, as are the shortened forms <? or <?= (which is used to echo back a string or variable) and ?> as well as ASP-style short forms <% or <%= and %>. While short delimiters are used, they make script files less portable as their purpose can be disabled in the PHP configuration, and so they are discouraged.[48] The purpose of all these delimiters is to separate PHP code from non-PHP code, including HTML.[49]

The first form of delimiters, <?php and ?>, in XHTML and other XML documents, creates correctly formed XML 'processing instructions'.[50] This means that the resulting mixture of PHP code and other markup in the server-side file is well-formed XML.

Variables are prefixed with a dollar symbol and a type does not need to be specified in advance. Unlike function and class names, variable names are case sensitive. Both double-quoted ("") and heredoc strings allow the ability to embed a variable's value into the string.[51] PHP treats newlines as whitespace in the manner of a free-form language (except when inside string quotes), and statements are terminated by a semicolon.[52] PHP has three types of comment syntax: /* */ marks block and inline comments; // as well as # are used for one-line comments.[53] The echo statement is one of several facilities PHP provides to output text (e.g. to a web browser).

In terms of keywords and language syntax, PHP is similar to most high level languages that follow the C style syntax. If conditions, for and while loops, and function returns are similar in syntax to languages such as C, C++, Java and Perl.

[edit] Data types

PHP stores whole numbers in a platform-dependent range. This range is typically that of 32-bit signed integers. Unsigned integers are converted to signed values in certain situations; this behavior is different from other programming languages.[54] Integer variables can be assigned using decimal (positive and negative), octal, and hexadecimal notations. 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.[55] 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++.[55] The null data type represents a variable that has no value. The only value in the null data type is NULL.[55] 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.[55] 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.[55] PHP also supports strings, which can be used with single quotes, double quotes, or heredoc syntax.[56]

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

[edit] Functions

PHP has hundreds of base functions and thousands more via extensions. These functions are well documented on the PHP site, however, the built-in library has a wide variety of naming conventions and inconsistencies. PHP currently has no functions for thread programming, although it does support multiprocess programming on POSIX systems.[58]

[edit] 5.2 and earlier

Functions are not first-class functions and can only be referenced by their name, directly or dynamically by a variable containing the name of the function. [59] User-defined functions can be created at any time without being prototyped.[59] Functions can be defined inside code blocks, permitting a run-time decision as to whether or not a function should be defined. Function calls must use parentheses, with the exception of zero argument class constructor functions called with the PHP new operator, where parentheses are optional. PHP supports quasi-anonymous functions through the create_function() function, although they are not true anonymous functions because anonymous functions are nameless, but functions can only be referenced by name, or indirectly through a variable $function_name();, in PHP.[59]

[edit] 5.3 and newer

PHP gained support for closures. True anonymous functions are supported using the following syntax:

function getAdder($x)
{
    return function ($y) use ($x) {
        rn $x + $y;
    };
}
 
$adder = getAdder(8);
echo $adder(2); // prints "10"

Here, getAdder() function creates a closure using parameter $x (keyword "use" forces getting variable from context), which takes additional argument $y and returns it to the caller. Such a function can be stored, given as the parameter to other functions, etc. For more details see Lambda functions and closures RFC.

[edit] Objects

Basic object-oriented programming functionality was added in PHP 3 and improved in PHP 4.[3] Object handling was completely rewritten for PHP 5, expanding the feature set and enhancing performance.[60] In previous versions of PHP, objects were handled like primitive types.[60] The drawback of this method was that the whole object was copied when a variable was assigned or passed as a parameter to a method. In the new approach, objects are referenced by handle, and not by value. PHP 5 introduced private and protected member variables and methods, along with abstract classes and final classes as well as 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.[61]

If the developer creates a copy of an object 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 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 that the programmer can start with a by-value replica of the source object and only override properties that need to be changed.[62]

[edit] Speed optimization

As with any interpreted language, PHP scripts are stored as human-readable source code and are compiled on-the-fly by the PHP engine.[63][64] In order to speed up execution time and not have to compile the PHP source code everytime the webpage is accessed, PHP scripts can also be stored in binary format using PHP compilers such as phc and roadsend.

Code optimizers aim to reduce the runtime of the compiled code by reducing its size and making other changes that can reduce the execution time with the goal of improving performance. The nature of the PHP compiler is such that there are often opportunities for code optimization,[65] and an example of a code optimizer is the eAccelerator PHP extension.[66]

Another approach for reducing overhead for high load 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, APC, will be built into PHP 6.[67] Opcode caching is also available in Zend Server Community Edition.

[edit] Resources

PHP includes free and open source libraries with the core build. PHP is a fundamentally Internet-aware system with modules built in for accessing FTP servers, many database servers, embedded SQL libraries such as embedded PostgreSQL, MySQL 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.[68]

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. Some more unusual features include integration with Internet Relay Chat, dynamic generation of images and Adobe Flash content, and even speech synthesis. The PHP Extension Community Library (PECL) project is a repository for extensions to the PHP language.[69]

Zend provides a certification exam for programmers to become certified PHP developers.

[edit] See also

[edit] Notes

  1. ^ a b c Rasmus Lerdorf began assembling C code originally written for CGI scripts into a library and accessing the library's functions, including SQL queries, through HTML-embedded commands in 1994; by 1995 the commands had taken the shape of PHP code that would be familiar of users of the language today. Lerdorf, Rasmus (2007-04-26). "PHP on Hormones - history of PHP presentation by Rasmus Lerdorf given at the MySQL Conference in Santa Clara, California" (mp3). The Conversations Network. http://itc.conversationsnetwork.org/shows/detail3298.html#. Retrieved 2009-12-11. "Every day I would change the language drastically, and it didn't take very long, so by 1995, mid-1995 or so, PHP looked like this. This isn't that far from what PHP looks like today, actually." 
  2. ^ "PHP Snapshots". The PHP Group. http://snaps.php.net/. Retrieved 2008-06-18. 
  3. ^ a b c d e f g h i j k l "History of PHP and related projects". The PHP Group. http://www.php.net/history. Retrieved 2008-02-25. 
  4. ^ "GPL-Incompatible, Free Software Licenses". Various Licenses and Comments about Them. Free Software Foundation. http://www.fsf.org/licensing/licenses/index_html#GPLIncompatibleLicenses. Retrieved 2008-02-22. 
  5. ^ Lerdorf, Rasmus (2007-04-26). "PHP on Hormones" (mp3). The Conversations Network. http://itc.conversationsnetwork.org/shows/detail3298.html. Retrieved 2009-06-22. 
  6. ^ Lerdorf, Rasmus (2007). "Slide 3". slides for 'PHP on Hormones' talk. The PHP Group. http://talks.php.net/show/mysql07key/3. Retrieved 2009-06-22. 
  7. ^ Lerdorf, Rasmus (1995-06-08). "Announce: Personal Home Page Tools (PHP Tools)". comp.infosystems.www.authoring.cgi. (Web link). Retrieved on 2006-09-17.
  8. ^ "Zend Engine version 2.0: Feature Overview and Design". Zend Technologies Ltd.. http://www.zend.com/zend/zend-engine-summary.php. Retrieved 2006-09-17. 
  9. ^ a b "php.net 2007 news archive". The PHP Group. 2007-07-13. http://www.php.net/archive/2007.php. Retrieved 2008-02-22. 
  10. ^ Kerner, Sean Michael (2008-02-01). "PHP 4 is Dead—Long Live PHP 5". InternetNews. http://www.internetnews.com/dev-news/article.php/3725291. Retrieved 2008-03-16. 
  11. ^ Trachtenberg, Adam (2004-07-15). "Why PHP 5 Rocks!". O'Reilly. http://www.onlamp.com/pub/a/php/2004/07/15/UpgradePHP5.html. Retrieved 2008-02-22. 
  12. ^ "Late Static Binding in PHP". Digital Sandwich. 2006-02-23. http://www.digitalsandwich.com/archives/53-Late-Static-Binding-in-PHP.html. Retrieved 2008-03-25. 
  13. ^ "Static Keyword". The PHP Group. http://www.php.net/language.oop5.static. Retrieved 2008-03-25. 
  14. ^ "Using Register Globals". PHP. http://www.php.net/register_globals. Retrieved 2008-04-04. 
  15. ^ "Prepare for PHP 6". CorePHP. 2005-11-23. http://www.corephp.co.uk/archives/19-Prepare-for-PHP-6.html. Retrieved 2008-03-24. 
  16. ^ "PHP 5.3 migration guide". The PHP project. http://www.php.net/migration53. Retrieved 2009-07-03. 
  17. ^ GoPHP5. "PHP projects join forces to Go PHP 5" (PDF). GoPHP5 Press Release. http://gophp5.org/sites/gophp5.org/files/press_release.pdf. Retrieved 2008-02-23. 
  18. ^ "GoPHP5". GoPHP5. http://gophp5.org/. Retrieved 2008-02-22. 
  19. ^ "Unicode". The PHP Group. http://www.php.net/~derick/meeting-notes.html#unicode. Retrieved 2008-03-25. 
  20. ^ Byfield, Bruce (February 28, 2007). "Upcoming PHP release will offer Unicode support". linux.com. http://www.linux.com/archive/feature/60386. Retrieved 2009-06-23. 
  21. ^ The PHP Group. "PHP For Windows snapshots". PHP Windows Development Team. http://windows.php.net/snapshots/. Retrieved 2009-05-25. 
  22. ^ a b c d e "PHP: PHP 4 ChangeLog". The PHP Group. 2008-01-03. http://www.php.net/ChangeLog-4.php. Retrieved 2008-02-22. 
  23. ^ "PHP: Using PHP from the command line - Manual:". The PHP Group. http://us3.php.net/manual/en/features.commandline.php. Retrieved 2009-09-11. 
  24. ^ "4.4.8 Release Announcement". PHP. 2008-08-08. http://www.php.net/releases/4_4_8.php. Retrieved 2009-07-29. 
  25. ^ "Downloads". PHP. http://www.php.net/downloads.php#v4. Retrieved 2009-07-29. 
  26. ^ "4.4.9 Release Announcement". PHP. http://www.php.net/releases/4_4_9.php. Retrieved 2009-07-29. 
  27. ^ a b c "PHP: PHP 5 ChangeLog". The PHP Group. 2007-11-08. http://www.php.net/ChangeLog-5.php. Retrieved 2008-02-22. 
  28. ^ "Embedding PHP in HTML". O'Reilly. 2001-05-03. http://www.onlamp.com/pub/a/php/2001/05/03/php_foundations.html. Retrieved 2008-02-25. 
  29. ^ "What does PHP do?". The PHP Group. http://gtk.php.net/manual1/it/html/intro.whatis.php.whatdoes.html. Retrieved 2008-02-25. 
  30. ^ "PHP and MySQL". University of Alabama. http://cs.ua.edu/457/Notes/PHP%20and%20MySQL.ppt. Retrieved 2008-02-25. 
  31. ^ "PHP Server-Side Scripting Language". Indiana University. 2007-04-04. http://webmaster.iu.edu/PHPlanguage/index.shtml. Retrieved 2008-02-25. 
  32. ^ "JavaServer Pages Technology — JavaServer Pages Comparing Methods for Server-Side Dynamic Content White Paper". Sun Microsystems. http://java.sun.com/products/jsp/jspservlet.html. Retrieved 2008-02-25. 
  33. ^ "PHP: PHP Usage Stats". SecuritySpace. 2007-04-01. http://www.php.net/usage.php. Retrieved 2008-02-24. 
  34. ^ "PHP and Facebook | Facebook". Blog.facebook.com. http://blog.facebook.com/blog.php?post=2356432130. Retrieved 2009-07-29. 
  35. ^ "Manual:Parameters to index.php". MediaWiki. http://www.mediawiki.org/wiki/Index.php. Retrieved 2009-07-29. 
  36. ^ Yahoo.com
  37. ^ "You've Got Friends!". myYearbook. http://myyearbook.com. Retrieved 2009-07-29. 
  38. ^ "Tagged". Tagged. http://tagged.com. Retrieved 2009-07-29. 
  39. ^ "Moodle - About". Moodle.org. http://docs.moodle.org/en/About_Moodle. Retrieved 2009-12-20. 
  40. ^ "PHP-related vulnerabilities on the National Vulnerability Database". 2008-03-01. http://www.coelho.net/php_cve.html. 
  41. ^ "Security and... Driving? (and Hiring) - Sean Coates: PHP, Web (+Beer)". Sean Coates. http://seancoates.com/security-and-driving-and-hiring. Retrieved 2009-07-29. 
  42. ^ computerworld.uk: Interview: Ivo Jansch, February 26, 2008
  43. ^ "PHP Taint Mode RFC". http://wiki.php.net/rfc/taint. 
  44. ^ "Developer Meeting Notes, Nov. 2005". http://www.php.net/~derick/meeting-notes.html#sand-boxing-or-taint-mode. 
  45. ^ "Taint mode decision, Nov 2007". http://devzone.zend.com/article/2798-Zend-Weekly-Summaries-Issue-368#Heading1. 
  46. ^ "The Power of PHP, both Good and Evil". 2009-02-28. http://www.cwihosting.com/php_security.php. 
  47. ^ "Hardened-PHP Project". 2008-08-15. http://www.hardened-php.net. 
  48. ^ "PHP: Basic syntax". The PHP Group. http://www.php.net/manual/en/language.basic-syntax.php. Retrieved 2008-02-22. 
  49. ^ "Your first PHP-enabled page". The PHP Group. http://www.php.net/manual/en/tutorial.firstpage.php. Retrieved 2008-02-25. 
  50. ^ Bray, Tim; et al (26 November 2008). "Processing Instructions". Extensible Markup Language (XML) 1.0 (Fifth Edition). W3C. http://www.w3.org/TR/2008/REC-xml-20081126/#sec-pi. Retrieved 2009-06-18. 
  51. ^ "Variables". The PHP Group. http://www.php.net/manual/en/language.variables.php. Retrieved 2008-03-16. 
  52. ^ "Instruction separation". The PHP Group. http://www.php.net/basic-syntax.instruction-separation. Retrieved 2008-03-16. 
  53. ^ "Comments". The PHP Group. http://www.php.net/manual/en/language.basic-syntax.comments.php. Retrieved 2008-03-16. 
  54. ^ "Integers in PHP, running with scissors, and portability". MySQL Performance Blog. March 27, 2007. http://www.mysqlperformanceblog.com/2007/03/27/integers-in-php-running-with-scissors-and-portability/. Retrieved 2007-03-28. 
  55. ^ a b c d e "Types". The PHP Group. http://www.php.net/manual/en/language.types.php. Retrieved 2008-03-16. 
  56. ^ "Strings". The PHP Group. http://www.php.net/manual/en/language.types.string.php. Retrieved 2008-03-21. 
  57. ^ "SPL — StandardPHPLibrary". PHP.net. March 16, 2009. http://www.php.net/spl. Retrieved 2009-03-16. 
  58. ^ "PHP.NET: Process Control". http://nz.php.net/manual/en/book.pcntl.php. Retrieved 2009-08-06. 
  59. ^ a b c "Functions". The PHP Group. http://www.php.net/manual/en/language.functions.php. Retrieved 2008-03-16. 
  60. ^ a b "PHP 5 Object References". mjtsai. http://mjtsai.com/blog/2004/07/15/php-5-object-references/. Retrieved 2008-03-16. 
  61. ^ "Classes and Objects (PHP 5)". The PHP Group. http://www.php.net/zend-engine-2.php. Retrieved 2008-03-16. 
  62. ^ "Object cloning". The PHP Group. http://www.php.net/language.oop5.cloning. Retrieved 2008-03-16. 
  63. ^ "How do computer languages work?". http://www.linux-tutorial.info/modules.php?name=Howto&pagename=Unix-and-Internet-Fundamentals-HOWTO/languages.html. Retrieved 2009-11-04. 
  64. ^ (Gilmore 2006, p. 43)
  65. ^ "PHP Accelerator 1.2 (page 3, Code Optimisation)" (PDF). Nick Lindridge. http://www.php-accelerator.co.uk/PHPA_Article.pdf. Retrieved 2008-03-28. 
  66. ^ "eAccelerator". http://eaccelerator.net/. Retrieved 2009-09-18. 
  67. ^ "Upcoming PHP6 Additions & Changes". http://davidwalsh.name/php6. Retrieved 2009-09-18. 
  68. ^ "PHP Function List". The PHP Group. http://www.php.net/quickref.php. Retrieved 2008-02-25. 
  69. ^ "Developing Custom PHP Extensions". devnewz. 2002-09-09. http://www.devnewz.com/090902b.html. Retrieved 2008-02-25. 

[edit] External links