vienāds " == ", nav vienāds " != ", identisks " === " ( vērtība un tips )
x += y ( x = x + y ) ; x -= y ( x = x - y )
++$x ( $x +1 ) --$x ($x - 1 )
Funkcijas > 1000
Annotations:
http://www.w3schools.com/php/php_functions.asp
Besides the built-in PHP functions, we can create our own functions.
A function is a block of statements that can be used repeatedly in a program.
A function will not execute immediately when a page loads.
A function will be executed by a call to the function.
NOT case-sensitive
argument ~= variable
function familyName($fname)
function MyFunction($myArgs)
function MyFunc($arg1, $arg2, $arg3 = "Default value")