Teknik Telekomunikasi    
   
Daftar Isi
(Sebelumnya) PhotosensitivityphpBB (Berikutnya)

PHP

PHP
PHP-logo.svg
PHP: Hypertext Preprocessor
Paradigm(s)imperative, object-oriented, procedural, reflective
Appeared in1995; 18 years ago (1995)[1]
Designed byRasmus Lerdorf
DeveloperThe PHP Group
Stable release5.4.12 (February 21, 2013; 20 days ago (2013-02-21))
Typing disciplineDynamic, weak
Major implementationsZend Engine, Phalanger, Quercus, Project Zero, HipHop
Influenced byPerl, C, C++, Java, Tcl[1]
Implementation languageC
OSCross-platform
LicensePHP License
Usual filename extensions.php, .phtml, .php4 .php3, .php5, .phps

PHP is a server-side scripting language designed for Web development but also used as a general-purpose programming language. PHP is now installed on more than 20 million Web sites and 1 million Web servers.[2] Originally created by Rasmus Lerdorf in 1995, the reference implementation of PHP is now produced by The PHP Group.[3] While PHP originally stood for Personal Home Page, it is now said to stand for PHP: Hypertext Preprocessor, a recursive acronym.[4]

PHP code is interpreted by a Web server with a PHP processor module which generates the resulting Web page: PHP commands can be embedded directly into an HTML source document rather than calling an external file to process data. It has also evolved to include a command-line interface capability and can be used in standalone graphical applications.[5]

PHP is free software released under the PHP License, which is incompatible with the GNU General Public License (GPL) due to restrictions on the usage of the term PHP.[6] PHP can be deployed on most Web servers and also as a standalone shell on almost every operating system and platform, free of charge.[7]

Contents

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.[3][8][9] 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 comp.infosystems.www.authoring.cgi Usenet discussion group on June 8, 1995.[10].[11] This release 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 and simpler, although less consistent.[3] A development team began to form and, after months of work and beta testing, officially released PHP/FI 2 in November 1997.

Zeev Suraski and Andi Gutmans rewrote the parser in 1997 and formed the base of PHP 3, changing the language's name to the recursive acronym PHP: Hypertext Preprocessor.[3] Afterward, 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.[12] 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.[13][14]

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 (PDO) extension (which defines a lightweight and consistent interface for accessing databases), and numerous performance enhancements.[15] 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.[16][17]

A new major version has been under development alongside PHP 5 for several years. This version was originally planned to be released as PHP 6 as a result of its significant changes, which included plans for full Unicode support. However, Unicode support took developers much longer to implement than originally thought, and the decision was made in March 2010[18] to move the project to a branch, with features still under development moved to trunk.

Changes in the new code include the removal of register_globals,[19] magic quotes, and safe mode.[13][20] The reason for the removals was that register_globals had opened security holes by intentionally allowing runtime data injection, and the use of magic quotes had an unpredictable nature. Instead, to escape characters, magic quotes may be replaced 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 future versions and have been deprecated in PHP 5.3 will produce a warning if used.[21]

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

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. Experimental 64-bit versions of PHP 5.3.0 were briefly available for Microsoft Windows, but have since been removed.[25]

Release history

Key
ColorMeaning
RedRelease no longer supported
GreenRelease supported
BlueFuture release
Major versionMinor versionRelease dateNotes
11.0.01995-06-08Officially called "Personal Home Page Tools (PHP Tools)". This is the first use of the name "PHP".[3]
22.0.01997-11-01 
33.0.01998-06-06Development moves from one person to multiple developers. Zeev Suraski and Andi Gutmans rewrite the base for this version.[3]
3.0.182000-10-20The latest release for PHP 3.0.x.[26]
44.0.02000-05-22Added more advanced two-stage parse/execute tag-parsing system called the Zend engine.[27]
4.1.02001-12-10Introduced 'superglobals' ($_GET, $_POST, $_SESSION, etc.)[27]
4.2.02002-04-22Disabled register_globals by default. Data received over the network is not inserted directly into the global namespace anymore, closing possible security holes in applications.[27]
4.3.02002-12-27Introduced the command-line interface (CLI), to supplement the CGI.[27][28]
4.4.02005-07-11Added man pages for phpize and php-config scripts.[27]
4.4.92008-08-07Security enhancements and bug fixes. The last release of the PHP 4.4 series.[29][30]
55.0.02004-07-13Zend Engine II with a new object model.[31]
5.1.02005-11-24Performance improvements with introduction of compiler variables in re-engineered PHP Engine.[31] Added PHP Data Objects (PDO) as a consistent interface for accessing databases.[32]
5.2.02006-11-02Enabled the filter extension by default. Native JSON support.[31]
5.2.162010-12-16End-of-life for 5.2 series [33]
5.2.172011-01-06Fix of critical vulnerability connected to floating point.
5.3.02009-06-30Namespace 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.12009-11-19Over 100 bug fixes, some of which were security fixes[34]
5.3.22010-03-04Includes many bug fixes.
5.3.32010-07-22Mainly bug and security fixes; FPM SAPI.
5.3.42010-12-10Mainly bug and security fixes; improvements to FPM SAPI.
5.3.52011-01-06Fix of critical vulnerability connected to floating point.
5.3.62011-03-10Over 60 bug fixes that were reported in the previous version.
5.3.72011-08-18This release focuses on improving the stability of the PHP 5.3.x branch with over 90 bug fixes, some of which are security related.
5.3.82011-08-23This release fixes two issues introduced in the PHP 5.3.7 release.
5.3.92012-01-10This release focuses on improving the stability of the PHP 5.3.x branch with over 90 bug fixes, some of which are security related.
5.3.102012-02-02Fixed arbitrary remote code execution vulnerability reported by Stefan Esser, CVE-2012-0830.
5.3.132012-05-08Fixed the vulnerability in CGI-based setups
5.3.142012-06-06Bug fixes and security enhancements[35]
5.3.152012-07-19Bug fixes and security enhancements[36]
5.3.162012-08-16Bug fixes[37]
5.3.172012-09-13Bug fixes[38]
5.3.182012-10-18Bug fixes[39]
5.3.192012-11-22Bug fixes[40]
5.3.202012-12-20Bug fixes[41]
5.3.212013-01-17Bug fixes[42]
5.3.222013-02-21Bug fixes[43]
5.4.02012-03-01Trait 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.[44] Several improvements to existing features, performance and reduced memory requirements.
5.4.12012-04-26Bug fixes[45]
5.4.22012-05-03Security patch to fix PHP-CGI query string parameter vulnerability.
5.4.32012-05-08Fix vulnerability in CGI-based setups and also the buffer overflow vulnerability for apache_request_headers()
5.4.42012-06-06Bug fixes and security enhancements[46]
5.4.52012-07-19Bug fixes and security enhancements[47]
5.4.62012-08-16Bug fixes[48]
5.4.72012-09-13Fixed Spoofchecker not being registered on ICU 49.1. Implemented FR #62840 (Add sort flag to ArrayObject::ksort)[49]
5.4.82012-10-18Bug fixes[50]
5.4.92012-11-22Bug fixes[51]
5.4.102012-12-20Bug fixes[52]
5.4.112013-01-17Bug fixes[53]
5.4.122013-02-21Bug fixes[54]
5.5.0 alpha2012-11-13[55]
66.0.0No date setThe development of PHP 6 has been delayed because the developers have decided the current approach to handling of instance unicode is not a good one, and are considering alternate ways in the next version of PHP.[56] The updates that were intended for PHP 6 were added to PHP 5.3.0 (namespace support, late static bindings, lambda functions, closures, goto) and 5.4.0 (traits, closure rebinding) instead.

Beginning on June 28, 2011, the PHP Group began following a timeline for when new versions of PHP will be released.[57] 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

The following Hello world program is written in PHP code embedded in an HTML document:

<!DOCTYPE html><meta charset=utf-8><title>PHP Test</title><?php echo 'Hello World';?>

The PHP interpreter only executes PHP code within its delimiters. Anything outside its delimiters is not processed by PHP (although non-PHP text is still subject to control structures described in 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 support for them can be disabled in the PHP configuration, and so they are discouraged.[58] The purpose of all these delimiters is to separate PHP code from non-PHP code, including HTML.[59]

The first form of delimiters, <?php and ?>, in XHTML and other XML documents, creates correctly formed XML 'processing instructions'.[60] This means that the resulting mixture of PHP code and other markup in the server-side file is itself 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 provide the ability to interpolate a variable's value into the string.[61] 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.[62] PHP has three types of comment syntax: /* */ marks block and inline comments; // as well as # are used for one-line comments.[63] 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++, C#, Java and Perl.

Data types

PHP stores whole numbers in a platform-dependent range, either a 64-bit or 32-bit signed integer equivalent to the C-language long type. Unsigned integers are converted to signed values in certain situations; this behavior is different from other programming languages.[64] 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.[65] 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++.[65] The null data type represents a variable that has no value. The only value in the null data type is NULL.[65] 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.[65] 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.[65] PHP also supports strings, which can be used with single quotes, double quotes, nowdoc or heredoc syntax.[66]

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

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.[68] PHP currently has no functions for thread programming, although it does support multiprocess programming on POSIX systems.[69]

Additional functions can be defined by a developer:

function myFunction() { //declares a function, this is named myFunction return 'John Doe'; //returns the value 'John Doe'} echo 'My name is ' . myFunction() . '!'; //outputs the text concatenated with the return value of myFunction. //myFunction is called as a result of this syntax.//The result of the output will be 'My name is John Doe!'

In PHP 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.[70] User-defined functions can be created at any time without being prototyped.[70] 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.[70]

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

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

Here, the getAdder() function creates a closure using the parameter $x (the keyword use imports a variable from the lexical context), which takes an additional argument $y and returns it to the caller. Such a function is a first class object, meaning that it can be stored in a variable, passed as a parameter to other functions, etc. For more details see Lambda functions and closures RFC.

The goto flow control statement is used as follows:

function lock() { $file = fopen('file.txt', 'r+'); retry: if (!flock($file, LOCK_EX & LOCK_NB)) { goto retry; } fwrite($file, 'Success!'); fclose($file);}

When flock() is called, PHP opens a file and tries to lock it. The target label retry: defines the point to which execution should return if flock() is unsuccessful and goto retry; is called. The goto statement is restricted and requires that the target label be in the same file and context.

The goto statement has been supported since PHP 5.3.

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.[71] In previous versions of PHP, objects were handled like value types.[71] 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, final classes, 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.[72]

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.[73]

The following is a basic example of object-oriented programming in PHP:

class Person { public $firstName; public $lastName;  public function __construct($firstName, $lastName = '') { //Optional parameter $this->firstName = $firstName; $this->lastName = $lastName; }  public function greet() { return "Hello, my name is " . $this->firstName . " " . $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 '<br />';echo $she->greet(); // prints "Hello, my name is Sally Davis."echo '<br />';echo $other->greet(); // prints "Hello, my name is iAmine ."echo '<br />';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.[74] Objects of the same type have access to each other's private and protected members even though they are not the same instance. PHP's member visibility features have sometimes been described as "highly useful."[75] However, they have also sometimes been described as "at best irrelevant and at worst positively harmful."[76]

Implementations

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.[77] PHP compilers of note include Phalanger, which compiles PHP into Common Intermediate Language (CIL) bytecode, and HipHop, developed at Facebook and now available as open source, which transforms the PHP Script into C++, then compiles it, reducing server load up to 50%.

PHP source code is compiled on-the-fly to an internal format that can be executed by the PHP engine.[78][79] 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 executable format 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.[80] 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, APC, is planned to be built into an upcoming release of PHP (but not 5.4 [81] as previously planned [82]).

Opcode caching and code optimization can be combined for best efficiency, as the modifications do not depend on each other (they happen in distinct stages of the compilation).

Licensing

PHP is free software released under the PHP License, which insists that:[83]

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).[84]

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.[85]

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 language's core functions such as those dealing with strings and arrays are also implemented as an extension.[86] The PHP Extension Community Library (PECL) project is a repository for extensions to the PHP language.[87] PDO - (PHP Data Objects) is an interface for accessing databases.[88] O'Reilly Networks - ONLamp</ref>[89][90][91][92][93]

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

Distribution

PHP-FPM (FastCGI Process Manager), a PHP FastCGI implementation, is bundled with the official PHP distribution since version 5.3.3.[94]

Use

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 Web sites or elsewhere.[95] 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.[7]

PHP acts primarily as a filter,[96] 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. Since PHP 4, the PHP parser compiles input to produce bytecode for processing by the Zend Engine, giving improved performance over its interpreter predecessor.[97]

Originally designed to create dynamic Web pages, PHP now focuses mainly on server-side scripting,[98] 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 ASP.NET, Sun Microsystems' JavaServer Pages,[99] 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 CakePHP, Symfony, CodeIgniter, 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. 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 are also available for Windows and OS X, then called WAMP and MAMP, 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[update], 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.[100] PHP is used as the server-side programming language on 75% of all Web sites whose server-side programming language is known,[101] and PHP is the most-used open source software within enterprises.[102] Web content management systems written in PHP include MediaWiki,[103] Joomla, eZ Publish, SilverStripe,[104] WordPress,[105] Drupal [106] and Moodle.[107] the user-facing portion of Facebook,[108] and Digg.[109]

Security

About 30% of all vulnerabilities listed on the National Vulnerability Database are linked to PHP.[110] 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).[111][112] 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,[113] but its inclusion in a release has been rejected several times in the past.[114][115]

There are advanced protection patches such as Suhosin and Hardening-Patch, especially designed for Web hosting environments.[116]

PHPIDS adds security to any PHP application to defend against intrusions. PHPIDS detects attacks based on cross-site scripting (XSS), SQL injection, header injection, directory traversal, remote file execution, remote file inclusion, and denial-of-service (DoS).[117]

See also

References

  1. ^ a b Lerdorf, Rasmus (2007-04-26). "PHP on Hormones – history of PHP presentation by Rasmus Lerdorf given at the MySQL Conference in Santa Clara, California". The Conversations Network. http://itc.conversationsnetwork.org/s hows/detail3298.html. Retrieved 2009-12-11.
  2. ^ "Usage Stats for April 2007". http://www.php.net/usage.php. Retrieved 2008-07-07.
  3. ^ a b c d e f g h i j "History of PHP and related projects". The PHP Group. http://www.php.net/history. Retrieved 2008-02-25.
  4. ^ PHP.net General FAQ
  5. ^ "Introduction: What can PHP do?". PHP Manual. http://www.php.net/manual/en/intro-wh atcando.php. Retrieved 2009-03-05.
  6. ^ "GPL-Incompatible, Free Software Licenses". Various Licenses and Comments about Them. Free Software Foundation. http://www.gnu.org/licenses/license-l ist.html#GPLIncompatibleLicenses. Retrieved 2012-03-11.
  7. ^ a b "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.
  8. ^ Lerdorf, Rasmus (2007-04-26). "PHP on Hormones" (mp3). The Conversations Network. http://itc.conversationsnetwork.org/s hows/detail3298.html. Retrieved 2009-06-22.
  9. ^ 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.
  10. ^ Lerdorf, Rasmus (June 8, 1995). "Announce: Personal Home Page Tools (PHP Tools)". http://groups.google.com/group/comp.i nfosystems.www.authoring.cgi/msg/cc7d 43454d64d133?pli=1. Retrieved 7 June 2011.
  11. ^ Lerdorf, Rasmus (1995-06-08). "Announce: Personal Home Page Tools (PHP Tools)". comp.infosystems.www.authoring.cgi. Web link. Retrieved 2006-09-17.
  12. ^ "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.
  13. ^ a b "php.net 2007 news archive". The PHP Group. 2007-07-13. http://www.php.net/archive/2007.php. Retrieved 2008-02-22.
  14. ^ 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.
  15. ^ 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.
  16. ^ "Late Static Binding in PHP". Digital Sandwich. 2006-02-23. http://www.digitalsandwich.com/archiv es/53-Late-Static-Binding-in-PHP.html. Retrieved 2008-03-25.
  17. ^ "Static Keyword". The PHP Group. http://www.php.net/language.oop5.stat ic. Retrieved 2008-03-25.
  18. ^ "PHP 6". The PHP project. http://news.php.net/php.internals/471 20. Retrieved 2010-03-27.
  19. ^ "Using Register Globals". PHP. http://www.php.net/register_globals. Retrieved 2008-04-04.
  20. ^ "Prepare for PHP 6". CorePHP. 2005-11-23. http://www.corephp.co.uk/archives/19- Prepare-for-PHP-6.html. Retrieved 2008-03-24.
  21. ^ "PHP 5.3 migration guide". The PHP project. http://www.php.net/migration53. Retrieved 2009-07-03.
  22. ^ "GoPHP5". http://www.gophp5.org/projects.
  23. ^ GoPHP5. "PHP projects join forces to Go PHP 5" (PDF). GoPHP5 Press Release. http://gophp5.org/sites/gophp5.org/fi les/press_release.pdf. Retrieved 2008-02-23.
  24. ^ "GoPHP5". GoPHP5. http://gophp5.org/. Retrieved 2008-02-22.
  25. ^ The PHP Group. "PHP For Windows snapshots". PHP Windows Development Team. http://windows.php.net/snapshots/. Retrieved 2009-05-25.
  26. ^ Unsupported Historical Releases
  27. ^ 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.
  28. ^ "Using PHP from the command line". PHP Manual. The PHP Group. http://us3.php.net/manual/en/features .commandline.php. Retrieved 2009-09-11.
  29. ^ "Downloads". PHP. http://www.php.net/downloads.php#v4. Retrieved 2009-07-29.
  30. ^ "4.4.9 Release Announcement". PHP. http://www.php.net/releases/4_4_9.php. Retrieved 2009-07-29.
  31. ^ a b c "PHP: PHP 5 ChangeLog". The PHP Group. 2007-11-08. http://www.php.net/ChangeLog-5.php. Retrieved 2008-02-22.
  32. ^ "PHP manual: PDO". The PHP Group. 2011-11-15. http://www.php.net/manual/en/intro.pd o.php. Retrieved 2011-11-15.
  33. ^ PHP: News Archive - 2010
  34. ^ http://www.php.net/ChangeLog-5.php#5. 3.1
  35. ^ http://www.php.net/ChangeLog-5.php#5. 3.14
  36. ^ http://www.php.net/ChangeLog-5.php#5. 3.15
  37. ^ http://www.php.net/ChangeLog-5.php#5. 3.16
  38. ^ http://www.php.net/ChangeLog-5.php#5. 3.17
  39. ^ http://www.php.net/ChangeLog-5.php#5. 3.18
  40. ^ http://www.php.net/ChangeLog-5.php#5. 3.19
  41. ^ http://www.php.net/ChangeLog-5.php#5. 3.20
  42. ^ http://www.php.net/ChangeLog-5.php#5. 3.21
  43. ^ http://www.php.net/ChangeLog-5.php#5. 3.22
  44. ^ "Built-in web server". http://php.net/manual/en/features.com mandline.webserver.php. Retrieved March 26, 2012.
  45. ^ http://www.php.net/ChangeLog-5.php#5. 4.1
  46. ^ http://www.php.net/ChangeLog-5.php#5. 4.4
  47. ^ http://www.php.net/ChangeLog-5.php#5. 4.5
  48. ^ http://www.php.net/ChangeLog-5.php#5. 4.6
  49. ^ http://www.php.net/ChangeLog-5.php#5. 4.7
  50. ^ http://www.php.net/ChangeLog-5.php#5. 4.8
  51. ^ http://www.php.net/ChangeLog-5.php#5. 4.9
  52. ^ http://www.php.net/ChangeLog-5.php#5. 4.10
  53. ^ http://www.php.net/ChangeLog-5.php#5. 4.11
  54. ^ http://www.php.net/ChangeLog-5.php#5. 4.12
  55. ^ http://news.php.net/php.internals/638 48
  56. ^ "PHP 6: Features, Release Date, Hosting and Download". http://smartwebdeveloper.com/php/php- 6-features-release-date-hosting-downl oad. Retrieved May 6, 2011.
  57. ^ "PHP: Release Process". 2011-07-23. https://wiki.php.net/rfc/releaseproce ss. Retrieved 2008-02-22.
  58. ^ "PHP: Basic syntax". The PHP Group. http://www.php.net/manual/en/language .basic-syntax.php. Retrieved 2008-02-22.
  59. ^ "Your first PHP-enabled page". The PHP Group. http://www.php.net/manual/en/tutorial .firstpage.php. Retrieved 2008-02-25.
  60. ^ 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-200 81126/#sec-pi. Retrieved 2009-06-18.
  61. ^ "Variables". The PHP Group. http://www.php.net/manual/en/language .variables.php. Retrieved 2008-03-16.
  62. ^ "Instruction separation". The PHP Group. http://www.php.net/basic-syntax.instr uction-separation. Retrieved 2008-03-16.
  63. ^ "Comments". The PHP Group. http://www.php.net/manual/en/language .basic-syntax.comments.php. Retrieved 2008-03-16.
  64. ^ "Integers in PHP, running with scissors, and portability". MySQL Performance Blog. March 27, 2007. http://www.mysqlperformanceblog.com/2 007/03/27/integers-in-php-running-wit h-scissors-and-portability/. Retrieved 2007-03-28.
  65. ^ a b c d e "Types". The PHP Group. http://www.php.net/manual/en/language .types.php. Retrieved 2008-03-16.
  66. ^ "Strings". The PHP Group. http://www.php.net/manual/en/language .types.string.php. Retrieved 2008-03-21.
  67. ^ "SPL — StandardPHPLibrary". PHP.net. March 16, 2009. http://www.php.net/spl. Retrieved 2009-03-16.
  68. ^ "Problems with PHP". http://toykeeper.net/soapbox/php_prob lems/. Retrieved 20 December 2010.
  69. ^ "PHP.NET: Process Control". http://nz.php.net/manual/en/book.pcnt l.php. Retrieved 2009-08-06.
  70. ^ a b c "Functions". The PHP Group. http://www.php.net/manual/en/language .functions.php. Retrieved 2008-03-16.
  71. ^ a b "PHP 5 Object References". mjtsai. http://mjtsai.com/blog/2004/07/15/php -5-object-references/. Retrieved 2008-03-16.
  72. ^ "Classes and Objects (PHP 5)". The PHP Group. http://www.php.net/zend-engine-2.php. Retrieved 2008-03-16.
  73. ^ "Object cloning". The PHP Group. http://www.php.net/language.oop5.clon ing. Retrieved 2008-03-16.
  74. ^ "Visibility". PHP Manual. Theserverpages.com. 2005-05-19. http://theserverpages.com/php/manual/ en/language.oop5.visibility.php. Retrieved 2010-08-26.
  75. ^ Gervasio, Alejandro. "More on Private Methods with PHP 5 Member Visibility". devshed.com. http://www.devshed.com/c/a/PHP/More-o n-Private-Methods-with-PHP-5-Member-V isibility/. Retrieved 24 November 2010.
  76. ^ "Visibility in PHP: Public, Private and Protected". Aperiplus.sourceforge.net. http://aperiplus.sourceforge.net/visi bility.php. Retrieved 2010-08-26.
  77. ^ Favre, Nicolas (2010-02-16). "A review of PHP compilers and their outputs". Technow.owlient.eu. http://technow.owlient.eu/index.php?p ost/2010/02/20/php-compilers. Retrieved 2010-05-20.[dead link]
  78. ^ "How do computer languages work?". http://www.linux-tutorial.info/module s.php?name=Howto&pagename=Unix-an d-Internet-Fundamentals-HOWTO/languag es.html. Retrieved 2009-11-04.
  79. ^ (Gilmore 2006, p. 43)
  80. ^ "PHP Accelerator 1.2 (page 3, Code Optimisation)" (PDF). Nick Lindridge. http://www.php-accelerator.co.uk/PHPA _Article.pdf. Retrieved 2008-03-28.
  81. ^ "[PHP-DEV APC in 5.4"]. http://www.serverphorums.com/read.php ?7,374842. Retrieved March 6, 2012.
  82. ^ "PHP Internals discussion". http://marc.info/?t=127695394900001. Retrieved July 12, 2011.
  83. ^ "The PHP License, version 3.01". http://www.php.net/license/3_01.txt. Retrieved 2010-05-20.
  84. ^ "GPL-Incompatible, Free Software Licenses". Various Licenses and Comments about Them. Free Software Foundation. http://www.gnu.org/licenses/license-l ist.html#GPLIncompatibleLicenses. Retrieved 2011-01-03.
  85. ^ "PHP Function List". The PHP Group. http://www.php.net/quickref.php. Retrieved 2008-02-25.
  86. ^ Cross Reference: /PHP_5_4/ext/standard/
  87. ^ "Developing Custom PHP Extensions". devnewz. 2002-09-09. Archived from the original on 2008-02-18. http://web.archive.org/web/2008021804 5752/http://www.devnewz.com/090902b.h tml. Retrieved 2008-02-25.
  88. ^ http://www.php.net/manual/en/intro.pd o.php
  89. ^ IBM DeveloperWorks
  90. ^ http://www-128.ibm.com/developerworks /library/os-php-dbmistake/index.html
  91. ^ IBM Redbooks
  92. ^ php|architect
  93. ^ Info
  94. ^ "News Archive: PHP 5.3.3 Released!". 2010-07-22. http://www.php.net/archive/2010.php#i d2010-07-22-2.
  95. ^ "PHP Manual Image Processing and GD;". php.net. http://php.net/manual/en/book.image.p hp. Retrieved 2011-04-09.
  96. ^ Archived June 11, 2008 at the Wayback Machine[not in citation given]
  97. ^ "PHP and MySQL". University of Alabama. Archived from the original on 2008-02-28. http://web.archive.org/web/2008022800 3031/http://cs.ua.edu/457/Notes/PHP+a nd+MySQL.ppt. Retrieved 2008-02-25.
  98. ^ "PHP Server-Side Scripting Language". Indiana University. 2007-04-04. http://webmaster.iu.edu/PHPlanguage/i ndex.shtml. Retrieved 2008-02-25.
  99. ^ "JavaServer Pages Technology — JavaServer Pages Comparing Methods for Server-Side Dynamic Content White Paper". Sun Microsystems. http://java.sun.com/products/jsp/jsps ervlet.html. Retrieved 2008-02-25.
  100. ^ "PHP: PHP Usage Stats". SecuritySpace. 2007-04-01. http://www.php.net/usage.php. Retrieved 2008-02-24.
  101. ^ "Usage of server-side programming languages for websites". W3Techs. 2010-10-29. http://w3techs.com/technologies/overv iew/programming_language/all. Retrieved 2010-10-29.
  102. ^ "PHP and Perl crashing the enterprise party". http://news.cnet.com/8301-13505_3-104 53213-16.html.
  103. ^ "Manual:Installation requirements#PHP". MediaWiki. 2010-01-25. http://www.mediawiki.org/w/index.php? title=Manual:Installation_requirement s&oldid=299556#PHP. Retrieved 2010-02-26. "PHP is the programming language in which MediaWiki is written [...]"
  104. ^ "System requirements of SilverStripe". http://www.silverstripe.org/system-re quirements/. Retrieved 2012-03-05. "SilverStripe requires PHP 5.2+"
  105. ^ "About WordPress". http://wordpress.org/about/. Retrieved 2010-02-26. "WordPress was [...] built on PHP"
  106. ^ "PHP and Drupal". Drupal.org. http://drupal.org/node/176052. Retrieved 2010-06-13.
  107. ^ "About". Moodle.org. http://docs.moodle.org/en/About_Moodl e. Retrieved 2009-12-20.
  108. ^ "PHP and Facebook | Facebook". Blog.facebook.com. http://blog.facebook.com/blog.php?pos t=2356432130. Retrieved 2009-07-29.
  109. ^ "PHP and Digg". O'Reilly. http://www.oreillynet.com/onlamp/blog /2006/04/digg_phps_scalability_and_pe rf.html. Retrieved 2010-06-13.
  110. ^ "PHP-related vulnerabilities on the National Vulnerability Database". http://www.coelho.net/php_cve.html. Retrieved 2012-07-05.
  111. ^ "Security and... Driving? (and Hiring)". Sean Coates. http://seancoates.com/security-and-dr iving-and-hiring. Retrieved 2009-07-29.
  112. ^ Computerworlduk.com, Interview: Ivo Jansch, February 26, 2008
  113. ^ "PHP Taint Mode RFC". http://wiki.php.net/rfc/taint.
  114. ^ "Developer Meeting Notes, Nov. 2005". http://www.php.net/~derick/meeting-no tes.html#sand-boxing-or-taint-mode.
  115. ^ "Taint mode decision, November 2007". http://devzone.zend.com/article/2798- Zend-Weekly-Summaries-Issue-368#Headi ng1.
  116. ^ "Hardened-PHP Project". 2008-08-15. http://www.hardened-php.net.
  117. ^ "PHPIDS". 2011-02-20. http://phpids.org.

External links

(Sebelumnya) PhotosensitivityphpBB (Berikutnya)