Download presentation
Presentation is loading. Please wait.
Published byCarmel Paul Modified over 9 years ago
1
PHP PHP: Hypertext Preprocessing
2
What is PHP? PHP is a server-side scripting language designed specifically for the Web. An open source language PHP code can be embedded within an HTML page, which will be executed each time that page is visited. Example code (all equivalent): – Short Style: – XML Style: – Script Style: echo “ Hello World! ” ; – ASP Style:
3
History of PHP Created by Rasmus Lerdorf in 1994 Originally a set of Perl scripts used by Lerdorf to show off his résumé as well as collect information on his website, such as the site ’ s traffic info. Lerdorf later transcribed these Perl scripts into a set of CGI binaries written in C, and in doing so, combined it with his own Form Interpreter to create PHP/FI.
4
History of PHP PHP/FI grew in popularity, but did not become widely known until two program developers named Zeev Suraski and Andi Gutmans, developed a new parser in the summer of 1997, which led to the development of PHP 3.0. The newest version out is PHP 5, which uses an engine developed by Suraski and Gutmans, known as the Zend II Engine. (Zend I was used by PHP 4)
5
PHP Programming Paradigms Uses both procedural and object oriented paradigms Procedural PHP – Has been in use since the creation of PHP, its primary paradigm. – Allows for easy and quick learning of the PHP language. – Similar to other popular languages such as Visual Basic, C++, and Fortran.
6
PHP Programming Paradigms Object Oriented PHP – Similar to Java, example of an object class: <?php class BaseClass { function __construct() { echo "In BaseClass constructor "; } class SubClass extends BaseClass { function __construct() { parent::__construct(); echo "In SubClass constructor "; } $obj = new BaseClass(); $obj = new SubClass(); ?> public class BaseClass { public BaseClass() { System.out.println("In BaseClass constructor\n"); } class SubClass extends BaseClass { public SubClass() { super(); System.out.println("In SubClass constructor\n"); } ----------------------------------------- public class Output { public static void main(String[] args) { Object obj; obj = new BaseClass(); obj = new SubClass(); }
7
Features of PHP Very Efficient – Can serve millions of hits per day. Database Integration – Supports many databases, such as mySQL and Oracle. Also has excellent XML support as of PHP 5. Built-in Libraries – Tailored to web development, one can connect to other network services, send email, work with cookies, generate PDF documents, and make GIF images on the fly all with a few lines of code. It ’ s Free – Available on http://www.php.net Easy to Learn – Very similar in syntax to C/C++/Java and Perl. Portable – Works on Unix based operating systems, on Mac OS X, as well as on versions of Microsoft Windows. Your PHP code will often work without modification on a different system running PHP.
8
Database Support The following is a list of supported databases in PHP 5: Adabas D InterBase PostgreSQL dBase FrontBase SQLite Empress mSQL FilePro (read-only) Solid Direct MS-SQL Sybase Hyperwave mySQL Velocis ODBC Unix dbm Informix Oracle (OCI7 and OCI8) Ingres Ovrimos IBM DB2
9
Differences From Java Data types are not required in variable declarations. The $ symbol precedes all variables in PHP Constants are declared using the define() method in PHP: ex. define( “ AOL", "something"); Constructors do not necessarily have to be the same name as the class name. Destructors are used in PHP to remove objects from memory after they are constructed.
10
What is PHP Good For? It is great for complex web page designs – E-commerce sites with heavy traffic (ex. Amazon) – Complex bulletin boards and forums (ex. phpBB) – Secure websites (ex. Novasis) – Email web hosts (ex. Gmail) – Working with and integrating XML into your webpage – Database management and search (ex. theFaceBook)
15
Simple PHP Example http://www.cis.udel.edu/~haggerty/teaching/ CISC474/11S/example/php/prod_discount/ http://www.cis.udel.edu/~haggerty/teaching/ CISC474/11S/example/php/prod_discount/
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.