Main Content

PHP revision ... by example.

Archive - Originally posted on "The Horse's Mouth" - 2012-12-15 23:46:54 - Graham Ellis

It's a big step from a few lines of PHP in a website which flashed up "Message of the day" ... to a system which computes results and looks up data dynamically ... to a system which requires pages to be linked together into an application ... to a system which requires access to back end data feeds ... and to a system which requires test and development and deployment servers, requires data caches for high volume, and requires audit control on the various release levels maintained by a many-person team across a wider organisation. But as an underlying base, you'll still have the basic PHP syntax and concepts.

This coming week, I'm presenting a private course that looks at how many of those more advanced aspets are tackled within one particular organisation. For starters, though, there's a requirement to make sure that all my delegates are up to speed on the basics. So here are some revision points:

• PHP is an open source general-purpose server-side scripting language originally designed for Web development to produce dynamic Web pages.
• It can also be run in other environments such as stand alone though originator Rasmus Lerdorf says the priority on features is for web use.

• PHP originally stood for "Personal Home Pages" and ran on "A Patchy Server", but who's going to commit his business to products with such names?
• PHP is now the PHP Hypertext Protocol, usually running under the Apache httpd server.

Key coding attributes:

• operator and operand based language
• ; separate statements and { to } blocks of code (like C)
• dynamic variable typing and memory allocation (unlike C)

• variable names start with a sigil (a $ character) to say "this is a variable"
• Comments start with # or // to end of line, or /* to */
• Code runs within <?php to ?> tags - outside that, code is echoed to output
• classic while, if and for statements, assignments, tests, etc

First example, showing classic coding, [here].

• Collection variables in PHP are known as arrays, but are actually ordered maps.
• they can be treated as an array, list (vector), hash table (an implementation of a map), dictionary, stack, queue, etc.
• array values can be other arrays, so trees and multidimensional arrays are possible.
• Use squarebrackets for indexing into an array

Second example, with a demonstration of both indesed and keyed (associative) arrays - [here].

• functions are named blocks of code
• passing parameters in by position, optional and by name
• variables default to being local to function
• variables can be declared as global or static
• Also note superglobal variables such as $_POST

Third example, with functions, [here].

These examples - you'll see the links above - are also avaialable from the new year on our public Object Orientation in PHP and PHP Techniques courses. They help ensure, in just half an hour or so, that everyone's up to speed with the basics and that any little gaps in knowledge are identified and fixed for second level courses.

Part 2 of this revision session - covering Object Orientation in PHP - may be found [here].