2013-06-27 13:42:07 +04:00
|
|
|
---
|
2014-10-12 23:24:52 +04:00
|
|
|
language: PHP
|
2013-07-04 09:59:13 +04:00
|
|
|
contributors:
|
2013-07-15 19:19:23 +04:00
|
|
|
- ["Malcolm Fell", "http://emarref.net/"]
|
|
|
|
- ["Trismegiste", "https://github.com/Trismegiste"]
|
2013-06-30 07:19:14 +04:00
|
|
|
filename: learnphp.php
|
2013-06-27 13:42:07 +04:00
|
|
|
---
|
|
|
|
|
|
|
|
This document describes PHP 5+.
|
|
|
|
|
|
|
|
```php
|
2013-08-02 20:40:22 +04:00
|
|
|
<?php // PHP code must be enclosed with <?php tags
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2013-11-09 22:29:14 +04:00
|
|
|
// If your php file only contains PHP code, it is best practice
|
2015-10-17 04:19:08 +03:00
|
|
|
// to omit the php closing tag to prevent accidental output.
|
2013-06-30 07:25:21 +04:00
|
|
|
|
2013-06-27 13:42:07 +04:00
|
|
|
// Two forward slashes start a one-line comment.
|
|
|
|
|
|
|
|
# So will a hash (aka pound symbol) but // is more common
|
|
|
|
|
|
|
|
/*
|
|
|
|
Surrounding text in slash-asterisk and asterisk-slash
|
|
|
|
makes it a multi-line comment.
|
|
|
|
*/
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// Use "echo" or "print" to print output
|
|
|
|
print('Hello '); // Prints "Hello " with no line break
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// () are optional for print and echo
|
2013-06-30 07:25:21 +04:00
|
|
|
echo "World\n"; // Prints "World" with a line break
|
2013-06-30 01:34:54 +04:00
|
|
|
// (all statements must end with a semicolon)
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// Anything outside <?php tags is echoed automatically
|
2013-08-02 20:40:22 +04:00
|
|
|
?>
|
|
|
|
Hello World Again!
|
2013-06-27 20:49:03 +04:00
|
|
|
<?php
|
2020-05-29 22:02:34 +03:00
|
|
|
// That is because historically PHP started as a Template engine
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
|
|
|
|
/************************************
|
|
|
|
* Types & Variables
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Variables begin with the $ symbol.
|
2020-05-29 22:10:55 +03:00
|
|
|
// A valid variable name starts with a letter or an underscore,
|
2013-06-30 01:34:54 +04:00
|
|
|
// followed by any number of letters, numbers, or underscores.
|
|
|
|
|
2020-05-29 22:10:55 +03:00
|
|
|
// You don't have to (and cannot) declare variables.
|
|
|
|
// Once you assign a value, PHP will create the variable with the right type.
|
|
|
|
|
2013-06-27 13:42:07 +04:00
|
|
|
// Boolean values are case-insensitive
|
2013-06-30 07:25:21 +04:00
|
|
|
$boolean = true; // or TRUE or True
|
2020-05-29 22:10:55 +03:00
|
|
|
$boolean = FALSE; // or false or False
|
2013-06-27 13:42:07 +04:00
|
|
|
|
|
|
|
// Integers
|
2013-07-09 02:39:12 +04:00
|
|
|
$int1 = 12; // => 12
|
|
|
|
$int2 = -12; // => -12
|
|
|
|
$int3 = 012; // => 10 (a leading 0 denotes an octal number)
|
2013-06-30 01:34:54 +04:00
|
|
|
$int4 = 0x0F; // => 15 (a leading 0x denotes a hex literal)
|
2015-10-31 14:37:12 +03:00
|
|
|
// Binary integer literals are available since PHP 5.4.0.
|
|
|
|
$int5 = 0b11111111; // 255 (a leading 0b denotes a binary number)
|
2013-06-27 13:42:07 +04:00
|
|
|
|
|
|
|
// Floats (aka doubles)
|
2013-06-28 00:48:31 +04:00
|
|
|
$float = 1.234;
|
|
|
|
$float = 1.2e3;
|
2013-06-27 13:42:07 +04:00
|
|
|
$float = 7E-10;
|
|
|
|
|
2013-09-01 07:44:15 +04:00
|
|
|
// Delete variable
|
2015-05-15 00:30:15 +03:00
|
|
|
unset($int1);
|
2013-09-01 07:44:15 +04:00
|
|
|
|
2013-06-27 13:42:07 +04:00
|
|
|
// Arithmetic
|
2013-06-30 07:25:21 +04:00
|
|
|
$sum = 1 + 1; // 2
|
2013-06-30 01:34:54 +04:00
|
|
|
$difference = 2 - 1; // 1
|
2013-06-30 07:25:21 +04:00
|
|
|
$product = 2 * 2; // 4
|
|
|
|
$quotient = 2 / 1; // 2
|
2013-06-27 13:42:07 +04:00
|
|
|
|
|
|
|
// Shorthand arithmetic
|
2013-06-30 01:34:54 +04:00
|
|
|
$number = 0;
|
2013-06-30 07:25:21 +04:00
|
|
|
$number += 1; // Increment $number by 1
|
|
|
|
echo $number++; // Prints 1 (increments after evaluation)
|
2013-09-15 10:15:53 +04:00
|
|
|
echo ++$number; // Prints 3 (increments before evaluation)
|
2013-06-30 01:34:54 +04:00
|
|
|
$number /= $float; // Divide and assign the quotient to $number
|
2013-06-27 20:49:03 +04:00
|
|
|
|
|
|
|
// Strings should be enclosed in single quotes;
|
|
|
|
$sgl_quotes = '$String'; // => '$String'
|
|
|
|
|
|
|
|
// Avoid using double quotes except to embed other variables
|
2013-06-30 07:25:21 +04:00
|
|
|
$dbl_quotes = "This is a $sgl_quotes."; // => 'This is a $String.'
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// Special characters are only escaped in double quotes
|
2013-06-30 07:25:21 +04:00
|
|
|
$escaped = "This contains a \t tab character.";
|
2013-06-30 01:34:54 +04:00
|
|
|
$unescaped = 'This just contains a slash and a t: \t';
|
2013-06-27 20:49:03 +04:00
|
|
|
|
|
|
|
// Enclose a variable in curly braces if needed
|
2023-07-23 07:01:36 +03:00
|
|
|
$number = 23;
|
|
|
|
$apples = "I have {$number} apples to eat."; // => I have 23 apples to eat.
|
|
|
|
$oranges = "I have ${number} oranges to eat."; // => I have 23 oranges to eat.
|
|
|
|
$money = "I have $${number} in the bank."; // => I have $23 in the bank.
|
2013-06-27 20:49:03 +04:00
|
|
|
|
|
|
|
// Since PHP 5.3, nowdocs can be used for uninterpolated multi-liners
|
2013-06-27 13:42:07 +04:00
|
|
|
$nowdoc = <<<'END'
|
|
|
|
Multi line
|
|
|
|
string
|
|
|
|
END;
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// Heredocs will do string interpolation
|
2013-06-27 13:42:07 +04:00
|
|
|
$heredoc = <<<END
|
|
|
|
Multi line
|
|
|
|
$sgl_quotes
|
2013-06-30 01:34:54 +04:00
|
|
|
END;
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// String concatenation is done with .
|
2023-07-23 07:01:36 +03:00
|
|
|
echo 'This string ' . 'is concatenated'; // Returns 'This string is concatenated'
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2015-10-17 03:11:37 +03:00
|
|
|
// Strings can be passed in as parameters to echo
|
2015-10-19 03:21:42 +03:00
|
|
|
echo 'Multiple', 'Parameters', 'Valid'; // Returns 'MultipleParametersValid'
|
|
|
|
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-07-03 21:50:20 +04:00
|
|
|
/********************************
|
|
|
|
* Constants
|
|
|
|
*/
|
2013-09-09 00:31:46 +04:00
|
|
|
|
2013-07-03 21:50:20 +04:00
|
|
|
// A constant is defined by using define()
|
|
|
|
// and can never be changed during runtime!
|
|
|
|
|
|
|
|
// a valid constant name starts with a letter or underscore,
|
|
|
|
// followed by any number of letters, numbers, or underscores.
|
2015-10-31 14:37:12 +03:00
|
|
|
define("FOO", "something");
|
2013-07-03 21:50:20 +04:00
|
|
|
|
2017-08-23 11:14:39 +03:00
|
|
|
// access to a constant is possible by calling the chosen name without a $
|
2015-10-19 03:21:42 +03:00
|
|
|
echo FOO; // Returns 'something'
|
2017-08-23 11:14:39 +03:00
|
|
|
echo 'This outputs ' . FOO; // Returns 'This outputs something'
|
2015-10-19 03:21:42 +03:00
|
|
|
|
2013-07-03 21:50:20 +04:00
|
|
|
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
/********************************
|
|
|
|
* Arrays
|
|
|
|
*/
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2017-08-11 06:43:33 +03:00
|
|
|
// All arrays in PHP are associative arrays (hashmaps in some languages)
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// Works with all PHP versions
|
|
|
|
$associative = array('One' => 1, 'Two' => 2, 'Three' => 3);
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// PHP 5.4 introduced a new syntax
|
|
|
|
$associative = ['One' => 1, 'Two' => 2, 'Three' => 3];
|
|
|
|
|
2013-06-30 07:25:21 +04:00
|
|
|
echo $associative['One']; // prints 1
|
2013-06-30 01:34:54 +04:00
|
|
|
|
2016-02-19 00:30:21 +03:00
|
|
|
// Add an element to an associative array
|
2016-02-19 00:38:15 +03:00
|
|
|
$associative['Four'] = 4;
|
2016-02-19 00:30:21 +03:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// List literals implicitly assign integer keys
|
|
|
|
$array = ['One', 'Two', 'Three'];
|
|
|
|
echo $array[0]; // => "One"
|
|
|
|
|
2013-09-01 07:44:15 +04:00
|
|
|
// Add an element to the end of an array
|
|
|
|
$array[] = 'Four';
|
2015-10-17 03:11:37 +03:00
|
|
|
// or
|
|
|
|
array_push($array, 'Five');
|
2013-09-01 07:44:15 +04:00
|
|
|
|
|
|
|
// Remove element from array
|
2013-09-09 00:31:46 +04:00
|
|
|
unset($array[3]);
|
2013-06-30 01:34:54 +04:00
|
|
|
|
|
|
|
/********************************
|
|
|
|
* Output
|
|
|
|
*/
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2015-10-31 14:34:51 +03:00
|
|
|
echo('Hello World!');
|
2013-06-27 20:49:03 +04:00
|
|
|
// Prints Hello World! to stdout.
|
|
|
|
// Stdout is the web page if running in a browser.
|
|
|
|
|
2013-06-27 13:42:07 +04:00
|
|
|
print('Hello World!'); // The same as echo
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2015-10-31 14:34:51 +03:00
|
|
|
// echo and print are language constructs too, so you can drop the parentheses
|
|
|
|
echo 'Hello World!';
|
2015-10-19 03:21:42 +03:00
|
|
|
print 'Hello World!';
|
2013-06-28 05:10:45 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
$paragraph = 'paragraph';
|
|
|
|
|
2013-06-30 07:25:21 +04:00
|
|
|
echo 100; // Echo scalar variables directly
|
|
|
|
echo $paragraph; // or variables
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-27 20:49:03 +04:00
|
|
|
// If short open tags are configured, or your PHP version is
|
|
|
|
// 5.4.0 or greater, you can use the short echo syntax
|
2013-06-30 01:34:54 +04:00
|
|
|
?>
|
|
|
|
<p><?= $paragraph ?></p>
|
2013-06-27 20:49:03 +04:00
|
|
|
<?php
|
|
|
|
|
2013-06-28 01:03:08 +04:00
|
|
|
$x = 1;
|
|
|
|
$y = 2;
|
2013-06-30 07:25:21 +04:00
|
|
|
$x = $y; // $x now contains the same value as $y
|
2013-06-30 01:34:54 +04:00
|
|
|
$z = &$y;
|
2013-06-30 07:25:21 +04:00
|
|
|
// $z now contains a reference to $y. Changing the value of
|
|
|
|
// $z will change the value of $y also, and vice-versa.
|
|
|
|
// $x will remain unchanged as the original value of $y
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
echo $x; // => 2
|
|
|
|
echo $z; // => 2
|
|
|
|
$y = 0;
|
|
|
|
echo $x; // => 2
|
|
|
|
echo $z; // => 0
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-08-25 19:43:07 +04:00
|
|
|
// Dumps type and value of variable to stdout
|
2013-09-01 07:29:51 +04:00
|
|
|
var_dump($z); // prints int(0)
|
2013-08-25 19:43:07 +04:00
|
|
|
|
|
|
|
// Prints variable to stdout in human-readable format
|
|
|
|
print_r($array); // prints: Array ( [0] => One [1] => Two [2] => Three )
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
/********************************
|
|
|
|
* Logic
|
|
|
|
*/
|
|
|
|
$a = 0;
|
|
|
|
$b = '0';
|
|
|
|
$c = '1';
|
|
|
|
$d = '1';
|
2013-06-28 01:03:08 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// assert throws a warning if its argument is not true
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// These comparisons will always be true, even if the types aren't the same.
|
|
|
|
assert($a == $b); // equality
|
2013-06-30 07:38:22 +04:00
|
|
|
assert($c != $a); // inequality
|
|
|
|
assert($c <> $a); // alternative inequality
|
2013-06-30 01:34:54 +04:00
|
|
|
assert($a < $c);
|
|
|
|
assert($c > $b);
|
|
|
|
assert($a <= $b);
|
|
|
|
assert($c >= $d);
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// The following will only be true if the values match and are the same type.
|
|
|
|
assert($c === $d);
|
|
|
|
assert($a !== $d);
|
2014-01-17 10:38:24 +04:00
|
|
|
assert(1 === '1');
|
2013-06-30 01:34:54 +04:00
|
|
|
assert(1 !== '1');
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2015-10-19 03:21:42 +03:00
|
|
|
// 'Spaceship' operator (since PHP 7)
|
|
|
|
// Returns 0 if values on either side are equal
|
|
|
|
// Returns 1 if value on the left is greater
|
|
|
|
// Returns -1 if the value on the right is greater
|
|
|
|
|
2015-10-02 19:24:45 +03:00
|
|
|
$a = 100;
|
|
|
|
$b = 1000;
|
|
|
|
|
|
|
|
echo $a <=> $a; // 0 since they are equal
|
|
|
|
echo $a <=> $b; // -1 since $a < $b
|
|
|
|
echo $b <=> $a; // 1 since $b > $a
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// Variables can be converted between types, depending on their usage.
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2013-06-27 13:42:07 +04:00
|
|
|
$integer = 1;
|
2013-06-30 01:34:54 +04:00
|
|
|
echo $integer + $integer; // => 2
|
2013-06-27 13:42:07 +04:00
|
|
|
|
|
|
|
$string = '1';
|
2013-06-30 01:34:54 +04:00
|
|
|
echo $string + $string; // => 2 (strings are coerced to integers)
|
2013-06-27 13:42:07 +04:00
|
|
|
|
|
|
|
$string = 'one';
|
2013-06-30 01:34:54 +04:00
|
|
|
echo $string + $string; // => 0
|
2013-06-27 20:49:03 +04:00
|
|
|
// Outputs 0 because the + operator cannot cast the string 'one' to a number
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// Type casting can be used to treat a variable as another type
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
$boolean = (boolean) 1; // => true
|
2013-06-27 13:42:07 +04:00
|
|
|
|
|
|
|
$zero = 0;
|
2013-06-30 01:34:54 +04:00
|
|
|
$boolean = (boolean) $zero; // => false
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// There are also dedicated functions for casting most types
|
2013-06-27 13:42:07 +04:00
|
|
|
$integer = 5;
|
2013-06-27 20:49:03 +04:00
|
|
|
$string = strval($integer);
|
2013-06-27 13:42:07 +04:00
|
|
|
|
|
|
|
$var = null; // Null value
|
|
|
|
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
/********************************
|
|
|
|
* Control Structures
|
|
|
|
*/
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
if (true) {
|
|
|
|
print 'I get printed';
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
if (false) {
|
2013-06-30 07:25:21 +04:00
|
|
|
print 'I don\'t';
|
2013-06-27 13:42:07 +04:00
|
|
|
} else {
|
2013-06-30 01:34:54 +04:00
|
|
|
print 'I get printed';
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
if (false) {
|
|
|
|
print 'Does not get printed';
|
2016-10-26 22:14:11 +03:00
|
|
|
} elseif (true) {
|
2013-06-30 01:34:54 +04:00
|
|
|
print 'Does';
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
|
|
|
|
2013-07-03 15:31:09 +04:00
|
|
|
// ternary operator
|
|
|
|
print (false ? 'Does not get printed' : 'Does');
|
|
|
|
|
2015-10-02 19:24:45 +03:00
|
|
|
// ternary shortcut operator since PHP 5.3
|
2020-01-22 13:49:33 +03:00
|
|
|
// equivalent of "$x ? $x : 'Does'"
|
2015-10-02 19:24:45 +03:00
|
|
|
$x = false;
|
|
|
|
print($x ?: 'Does');
|
|
|
|
|
|
|
|
// null coalesce operator since php 7
|
|
|
|
$a = null;
|
|
|
|
$b = 'Does print';
|
|
|
|
echo $a ?? 'a is not set'; // prints 'a is not set'
|
|
|
|
echo $b ?? 'b is not set'; // prints 'Does print'
|
|
|
|
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
$x = 0;
|
|
|
|
if ($x === '0') {
|
|
|
|
print 'Does not print';
|
2016-10-26 22:14:11 +03:00
|
|
|
} elseif ($x == '1') {
|
2013-06-30 01:34:54 +04:00
|
|
|
print 'Does not print';
|
2013-06-27 13:42:07 +04:00
|
|
|
} else {
|
2013-06-30 01:34:54 +04:00
|
|
|
print 'Does print';
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
2013-06-30 01:34:54 +04:00
|
|
|
|
2013-07-03 15:31:09 +04:00
|
|
|
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// This alternative syntax is useful for templates:
|
2013-06-27 20:49:03 +04:00
|
|
|
?>
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
<?php if ($x): ?>
|
2013-06-28 00:57:52 +04:00
|
|
|
This is displayed if the test is truthy.
|
2013-06-27 13:42:07 +04:00
|
|
|
<?php else: ?>
|
2013-06-28 00:57:52 +04:00
|
|
|
This is displayed otherwise.
|
2013-06-27 13:42:07 +04:00
|
|
|
<?php endif; ?>
|
|
|
|
|
2013-06-27 20:49:03 +04:00
|
|
|
<?php
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// Use switch to save some logic.
|
|
|
|
switch ($x) {
|
|
|
|
case '0':
|
|
|
|
print 'Switch does type coercion';
|
2013-06-30 07:38:22 +04:00
|
|
|
break; // You must include a break, or you will fall through
|
|
|
|
// to cases 'two' and 'three'
|
2013-06-27 13:42:07 +04:00
|
|
|
case 'two':
|
|
|
|
case 'three':
|
2013-06-27 20:49:03 +04:00
|
|
|
// Do something if $variable is either 'two' or 'three'
|
2013-06-27 13:42:07 +04:00
|
|
|
break;
|
|
|
|
default:
|
2013-06-27 20:49:03 +04:00
|
|
|
// Do something by default
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// While, do...while and for loops are probably familiar
|
2013-06-27 13:42:07 +04:00
|
|
|
$i = 0;
|
|
|
|
while ($i < 5) {
|
2013-06-27 20:49:03 +04:00
|
|
|
echo $i++;
|
2017-06-16 10:40:47 +03:00
|
|
|
} // Prints "01234"
|
2013-06-30 01:34:54 +04:00
|
|
|
|
|
|
|
echo "\n";
|
2013-06-27 13:42:07 +04:00
|
|
|
|
|
|
|
$i = 0;
|
|
|
|
do {
|
2013-06-27 20:49:03 +04:00
|
|
|
echo $i++;
|
2013-06-30 01:34:54 +04:00
|
|
|
} while ($i < 5); // Prints "01234"
|
|
|
|
|
|
|
|
echo "\n";
|
2013-06-27 13:42:07 +04:00
|
|
|
|
|
|
|
for ($x = 0; $x < 10; $x++) {
|
2013-06-30 07:25:21 +04:00
|
|
|
echo $x;
|
|
|
|
} // Prints "0123456789"
|
2013-06-30 01:34:54 +04:00
|
|
|
|
|
|
|
echo "\n";
|
|
|
|
|
|
|
|
$wheels = ['bicycle' => 2, 'car' => 4];
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// Foreach loops can iterate over arrays
|
2013-06-30 07:25:21 +04:00
|
|
|
foreach ($wheels as $wheel_count) {
|
|
|
|
echo $wheel_count;
|
2013-06-30 01:34:54 +04:00
|
|
|
} // Prints "24"
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
echo "\n";
|
|
|
|
|
|
|
|
// You can iterate over the keys as well as the values
|
2013-06-27 13:42:07 +04:00
|
|
|
foreach ($wheels as $vehicle => $wheel_count) {
|
2013-06-27 20:49:03 +04:00
|
|
|
echo "A $vehicle has $wheel_count wheels";
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
echo "\n";
|
|
|
|
|
2013-06-27 13:42:07 +04:00
|
|
|
$i = 0;
|
|
|
|
while ($i < 5) {
|
2013-06-30 01:34:54 +04:00
|
|
|
if ($i === 3) {
|
|
|
|
break; // Exit out of the while loop
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
2013-06-27 20:49:03 +04:00
|
|
|
echo $i++;
|
2013-06-30 07:25:21 +04:00
|
|
|
} // Prints "012"
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 07:25:21 +04:00
|
|
|
for ($i = 0; $i < 5; $i++) {
|
2013-06-30 01:34:54 +04:00
|
|
|
if ($i === 3) {
|
2013-06-27 20:49:03 +04:00
|
|
|
continue; // Skip this iteration of the loop
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
2013-06-30 01:34:54 +04:00
|
|
|
echo $i;
|
|
|
|
} // Prints "0124"
|
2013-06-27 13:42:07 +04:00
|
|
|
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
/********************************
|
|
|
|
* Functions
|
|
|
|
*/
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// Define a function with "function":
|
2013-06-30 07:25:21 +04:00
|
|
|
function my_function () {
|
2015-10-17 04:43:47 +03:00
|
|
|
return 'Hello';
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
echo my_function(); // => "Hello"
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// A valid function name starts with a letter or underscore, followed by any
|
|
|
|
// number of letters, numbers, or underscores.
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 07:25:21 +04:00
|
|
|
function add ($x, $y = 1) { // $y is optional and defaults to 1
|
2015-10-17 04:43:47 +03:00
|
|
|
$result = $x + $y;
|
|
|
|
return $result;
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
echo add(4); // => 5
|
|
|
|
echo add(4, 2); // => 6
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// $result is not accessible outside the function
|
|
|
|
// print $result; // Gives a warning.
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// Since PHP 5.3 you can declare anonymous functions;
|
2013-06-30 07:25:21 +04:00
|
|
|
$inc = function ($x) {
|
2015-10-17 04:43:47 +03:00
|
|
|
return $x + 1;
|
2013-06-30 01:34:54 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
echo $inc(2); // => 3
|
2013-06-28 01:11:27 +04:00
|
|
|
|
|
|
|
function foo ($x, $y, $z) {
|
2015-10-17 04:43:47 +03:00
|
|
|
echo "$x - $y - $z";
|
2013-06-28 01:11:27 +04:00
|
|
|
}
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// Functions can return functions
|
2013-06-28 01:11:27 +04:00
|
|
|
function bar ($x, $y) {
|
2015-10-17 04:43:47 +03:00
|
|
|
// Use 'use' to bring in outside variables
|
|
|
|
return function ($z) use ($x, $y) {
|
|
|
|
foo($x, $y, $z);
|
|
|
|
};
|
2013-06-28 01:11:27 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
$bar = bar('A', 'B');
|
2013-06-30 07:25:21 +04:00
|
|
|
$bar('C'); // Prints "A - B - C"
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// You can call named functions using strings
|
|
|
|
$function_name = 'add';
|
|
|
|
echo $function_name(1, 2); // => 3
|
2022-12-10 18:05:34 +03:00
|
|
|
// Useful for programmatically determining which function to run.
|
2013-06-30 07:38:22 +04:00
|
|
|
// Or, use call_user_func(callable $callback [, $parameter [, ... ]]);
|
|
|
|
|
2015-10-17 03:36:19 +03:00
|
|
|
|
2018-10-01 10:53:22 +03:00
|
|
|
// You can get all the parameters passed to a function
|
2015-10-17 03:36:19 +03:00
|
|
|
function parameters() {
|
2015-10-17 04:43:47 +03:00
|
|
|
$numargs = func_num_args();
|
|
|
|
if ($numargs > 0) {
|
|
|
|
echo func_get_arg(0) . ' | ';
|
|
|
|
}
|
|
|
|
$args_array = func_get_args();
|
|
|
|
foreach ($args_array as $key => $arg) {
|
|
|
|
echo $key . ' - ' . $arg . ' | ';
|
|
|
|
}
|
2015-10-17 03:36:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
parameters('Hello', 'World'); // Hello | 0 - Hello | 1 - World |
|
|
|
|
|
2015-10-19 01:46:23 +03:00
|
|
|
// Since PHP 5.6 you can get a variable number of arguments
|
|
|
|
function variable($word, ...$list) {
|
|
|
|
echo $word . " || ";
|
|
|
|
foreach ($list as $item) {
|
|
|
|
echo $item . ' | ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-16 09:49:32 +03:00
|
|
|
variable("Separate", "Hello", "World"); // Separate || Hello | World |
|
2015-10-19 01:46:23 +03:00
|
|
|
|
2013-06-30 07:38:22 +04:00
|
|
|
/********************************
|
|
|
|
* Includes
|
|
|
|
*/
|
|
|
|
|
|
|
|
<?php
|
2013-06-30 07:52:45 +04:00
|
|
|
// PHP within included files must also begin with a PHP open tag.
|
2013-06-30 07:38:22 +04:00
|
|
|
|
|
|
|
include 'my-file.php';
|
|
|
|
// The code in my-file.php is now available in the current scope.
|
|
|
|
// If the file cannot be included (e.g. file not found), a warning is emitted.
|
|
|
|
|
|
|
|
include_once 'my-file.php';
|
|
|
|
// If the code in my-file.php has been included elsewhere, it will
|
|
|
|
// not be included again. This prevents multiple class declaration errors
|
|
|
|
|
|
|
|
require 'my-file.php';
|
|
|
|
require_once 'my-file.php';
|
|
|
|
// Same as include(), except require() will cause a fatal error if the
|
|
|
|
// file cannot be included.
|
|
|
|
|
|
|
|
// Contents of my-include.php:
|
|
|
|
<?php
|
|
|
|
|
|
|
|
return 'Anything you like.';
|
|
|
|
// End file
|
|
|
|
|
|
|
|
// Includes and requires may also return a value.
|
|
|
|
$value = include 'my-include.php';
|
|
|
|
|
|
|
|
// Files are included based on the file path given or, if none is given,
|
|
|
|
// the include_path configuration directive. If the file isn't found in
|
|
|
|
// the include_path, include will finally check in the calling script's
|
|
|
|
// own directory and the current working directory before failing.
|
|
|
|
/* */
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
/********************************
|
|
|
|
* Classes
|
|
|
|
*/
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 07:25:21 +04:00
|
|
|
// Classes are defined with the class keyword
|
|
|
|
|
|
|
|
class MyClass
|
|
|
|
{
|
|
|
|
const MY_CONST = 'value'; // A constant
|
|
|
|
|
|
|
|
static $staticVar = 'static';
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2013-08-13 04:34:17 +04:00
|
|
|
// Static variables and their visibility
|
|
|
|
public static $publicStaticVar = 'publicStatic';
|
2013-09-09 00:31:46 +04:00
|
|
|
// Accessible within the class only
|
|
|
|
private static $privateStaticVar = 'privateStatic';
|
|
|
|
// Accessible from the class and subclasses
|
|
|
|
protected static $protectedStaticVar = 'protectedStatic';
|
2013-08-13 04:34:17 +04:00
|
|
|
|
2013-06-30 07:25:21 +04:00
|
|
|
// Properties must declare their visibility
|
|
|
|
public $property = 'public';
|
2013-06-30 01:34:54 +04:00
|
|
|
public $instanceProp;
|
2013-06-30 07:38:22 +04:00
|
|
|
protected $prot = 'protected'; // Accessible from the class and subclasses
|
|
|
|
private $priv = 'private'; // Accessible within the class only
|
2013-06-30 01:34:54 +04:00
|
|
|
|
|
|
|
// Create a constructor with __construct
|
2016-10-26 22:14:11 +03:00
|
|
|
public function __construct($instanceProp)
|
|
|
|
{
|
2013-06-30 01:34:54 +04:00
|
|
|
// Access instance variables with $this
|
|
|
|
$this->instanceProp = $instanceProp;
|
|
|
|
}
|
2013-06-30 07:25:21 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// Methods are declared as functions inside a class
|
2013-06-30 07:25:21 +04:00
|
|
|
public function myMethod()
|
|
|
|
{
|
|
|
|
print 'MyClass';
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
2013-06-28 00:48:31 +04:00
|
|
|
|
2015-10-17 05:07:08 +03:00
|
|
|
// final keyword would make a function unoverridable
|
2013-06-30 07:25:21 +04:00
|
|
|
final function youCannotOverrideMe()
|
|
|
|
{
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
2016-10-26 22:14:11 +03:00
|
|
|
|
2015-10-17 05:07:08 +03:00
|
|
|
// Magic Methods
|
2016-10-26 22:14:11 +03:00
|
|
|
|
2015-10-17 05:07:08 +03:00
|
|
|
// what to do if Object is treated as a String
|
2016-10-26 22:14:11 +03:00
|
|
|
public function __toString()
|
|
|
|
{
|
2015-10-17 05:07:08 +03:00
|
|
|
return $property;
|
|
|
|
}
|
2016-10-26 22:14:11 +03:00
|
|
|
|
2015-10-17 05:07:08 +03:00
|
|
|
// opposite to __construct()
|
2015-10-19 00:37:39 +03:00
|
|
|
// called when object is no longer referenced
|
2016-10-26 22:14:11 +03:00
|
|
|
public function __destruct()
|
|
|
|
{
|
2015-10-19 00:37:39 +03:00
|
|
|
print "Destroying";
|
2015-10-17 05:07:08 +03:00
|
|
|
}
|
2013-06-28 00:48:31 +04:00
|
|
|
|
2013-08-30 08:50:11 +04:00
|
|
|
/*
|
2013-09-09 00:31:46 +04:00
|
|
|
* Declaring class properties or methods as static makes them accessible without
|
|
|
|
* needing an instantiation of the class. A property declared as static can not
|
|
|
|
* be accessed with an instantiated class object (though a static method can).
|
2015-10-02 02:42:51 +03:00
|
|
|
*/
|
2013-08-30 08:50:11 +04:00
|
|
|
|
2013-06-30 07:25:21 +04:00
|
|
|
public static function myStaticMethod()
|
|
|
|
{
|
|
|
|
print 'I am static';
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-08 06:11:24 +03:00
|
|
|
// Class constants can always be accessed statically
|
2013-06-30 07:25:21 +04:00
|
|
|
echo MyClass::MY_CONST; // Outputs 'value';
|
2015-10-01 14:37:05 +03:00
|
|
|
|
2013-06-30 07:25:21 +04:00
|
|
|
echo MyClass::$staticVar; // Outputs 'static';
|
|
|
|
MyClass::myStaticMethod(); // Outputs 'I am static';
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 07:38:22 +04:00
|
|
|
// Instantiate classes using new
|
|
|
|
$my_class = new MyClass('An instance property');
|
|
|
|
// The parentheses are optional if not passing in an argument.
|
|
|
|
|
2013-06-30 07:25:21 +04:00
|
|
|
// Access class members using ->
|
|
|
|
echo $my_class->property; // => "public"
|
2013-06-30 01:34:54 +04:00
|
|
|
echo $my_class->instanceProp; // => "An instance property"
|
2013-06-30 07:25:21 +04:00
|
|
|
$my_class->myMethod(); // => "MyClass"
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2021-11-02 00:20:59 +03:00
|
|
|
// Nullsafe operators since PHP 8
|
|
|
|
// You can use this when you're unsure if the abstraction of $my_class contains has a property/method
|
|
|
|
// it can be used in conjunction with the nullish coalesce operator to ensure proper value
|
|
|
|
echo $my_class->invalid_property // An error is thrown
|
|
|
|
echo $my_class?->invalid_property // => NULL
|
|
|
|
echo $my_class?->invalid_property ?? "public" // => "public"
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// Extend classes using "extends"
|
2013-06-30 07:25:21 +04:00
|
|
|
class MyOtherClass extends MyClass
|
|
|
|
{
|
|
|
|
function printProtectedProperty()
|
|
|
|
{
|
2013-06-30 07:38:22 +04:00
|
|
|
echo $this->prot;
|
2013-06-30 01:34:54 +04:00
|
|
|
}
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// Override a method
|
2013-06-30 07:25:21 +04:00
|
|
|
function myMethod()
|
|
|
|
{
|
2013-06-30 01:34:54 +04:00
|
|
|
parent::myMethod();
|
2013-06-30 07:25:21 +04:00
|
|
|
print ' > MyOtherClass';
|
2013-06-30 01:34:54 +04:00
|
|
|
}
|
|
|
|
}
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 07:25:21 +04:00
|
|
|
$my_other_class = new MyOtherClass('Instance prop');
|
2013-06-30 01:34:54 +04:00
|
|
|
$my_other_class->printProtectedProperty(); // => Prints "protected"
|
2013-06-30 07:25:21 +04:00
|
|
|
$my_other_class->myMethod(); // Prints "MyClass > MyOtherClass"
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2013-06-30 07:25:21 +04:00
|
|
|
final class YouCannotExtendMe
|
|
|
|
{
|
2013-06-30 01:34:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// You can use "magic methods" to create getters and setters
|
2013-06-30 07:25:21 +04:00
|
|
|
class MyMapClass
|
|
|
|
{
|
2013-06-27 20:49:03 +04:00
|
|
|
private $property;
|
2013-06-28 00:48:31 +04:00
|
|
|
|
2013-06-27 13:42:07 +04:00
|
|
|
public function __get($key)
|
|
|
|
{
|
2013-06-27 20:49:03 +04:00
|
|
|
return $this->$key;
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
2013-06-28 00:48:31 +04:00
|
|
|
|
2013-06-27 13:42:07 +04:00
|
|
|
public function __set($key, $value)
|
|
|
|
{
|
2013-06-27 20:49:03 +04:00
|
|
|
$this->$key = $value;
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
$x = new MyMapClass();
|
2013-06-27 20:49:03 +04:00
|
|
|
echo $x->property; // Will use the __get() method
|
|
|
|
$x->property = 'Something'; // Will use the __set() method
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// Classes can be abstract (using the abstract keyword) or
|
|
|
|
// implement interfaces (using the implements keyword).
|
|
|
|
// An interface is declared with the interface keyword.
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2013-06-27 13:42:07 +04:00
|
|
|
interface InterfaceOne
|
|
|
|
{
|
2013-06-27 20:49:03 +04:00
|
|
|
public function doSomething();
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
interface InterfaceTwo
|
|
|
|
{
|
2013-06-30 01:34:54 +04:00
|
|
|
public function doSomethingElse();
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
|
|
|
|
2013-07-08 14:41:14 +04:00
|
|
|
// interfaces can be extended
|
|
|
|
interface InterfaceThree extends InterfaceTwo
|
|
|
|
{
|
|
|
|
public function doAnotherContract();
|
|
|
|
}
|
|
|
|
|
2013-06-27 13:42:07 +04:00
|
|
|
abstract class MyAbstractClass implements InterfaceOne
|
|
|
|
{
|
2013-06-30 07:25:21 +04:00
|
|
|
public $x = 'doSomething';
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
class MyConcreteClass extends MyAbstractClass implements InterfaceTwo
|
2013-06-27 13:42:07 +04:00
|
|
|
{
|
2013-06-30 07:25:21 +04:00
|
|
|
public function doSomething()
|
|
|
|
{
|
2013-06-30 01:34:54 +04:00
|
|
|
echo $x;
|
|
|
|
}
|
2013-06-30 07:25:21 +04:00
|
|
|
|
|
|
|
public function doSomethingElse()
|
|
|
|
{
|
|
|
|
echo 'doSomethingElse';
|
2013-06-30 01:34:54 +04:00
|
|
|
}
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
|
2013-06-27 13:42:07 +04:00
|
|
|
// Classes can implement more than one interface
|
|
|
|
class SomeOtherClass implements InterfaceOne, InterfaceTwo
|
|
|
|
{
|
2013-06-30 07:25:21 +04:00
|
|
|
public function doSomething()
|
|
|
|
{
|
|
|
|
echo 'doSomething';
|
2013-06-30 01:34:54 +04:00
|
|
|
}
|
2013-06-30 07:25:21 +04:00
|
|
|
|
|
|
|
public function doSomethingElse()
|
|
|
|
{
|
|
|
|
echo 'doSomethingElse';
|
2013-06-30 01:34:54 +04:00
|
|
|
}
|
2013-06-27 13:42:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
/********************************
|
|
|
|
* Traits
|
|
|
|
*/
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-06-30 07:38:22 +04:00
|
|
|
// Traits are available from PHP 5.4.0 and are declared using "trait"
|
2013-06-30 01:34:54 +04:00
|
|
|
|
2013-06-30 07:25:21 +04:00
|
|
|
trait MyTrait
|
|
|
|
{
|
2013-06-30 01:34:54 +04:00
|
|
|
public function myTraitMethod()
|
|
|
|
{
|
2013-06-30 07:25:21 +04:00
|
|
|
print 'I have MyTrait';
|
2013-06-30 01:34:54 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyTraitfulClass
|
|
|
|
{
|
|
|
|
use MyTrait;
|
|
|
|
}
|
|
|
|
|
|
|
|
$cls = new MyTraitfulClass();
|
|
|
|
$cls->myTraitMethod(); // Prints "I have MyTrait"
|
|
|
|
|
|
|
|
|
|
|
|
/********************************
|
|
|
|
* Namespaces
|
|
|
|
*/
|
|
|
|
|
|
|
|
// This section is separate, because a namespace declaration
|
|
|
|
// must be the first statement in a file. Let's pretend that is not the case
|
|
|
|
|
2013-06-27 20:49:03 +04:00
|
|
|
<?php
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// By default, classes exist in the global namespace, and can
|
|
|
|
// be explicitly called with a backslash.
|
|
|
|
|
2013-06-27 13:42:07 +04:00
|
|
|
$cls = new \MyClass();
|
|
|
|
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
|
|
|
|
// Set the namespace for a file
|
2013-06-27 13:42:07 +04:00
|
|
|
namespace My\Namespace;
|
|
|
|
|
|
|
|
class MyClass
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// (from another file)
|
2013-06-27 13:42:07 +04:00
|
|
|
$cls = new My\Namespace\MyClass;
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
//Or from within another namespace.
|
2013-06-27 13:42:07 +04:00
|
|
|
namespace My\Other\Namespace;
|
|
|
|
|
|
|
|
use My\Namespace\MyClass;
|
|
|
|
|
|
|
|
$cls = new MyClass();
|
|
|
|
|
2013-06-30 01:34:54 +04:00
|
|
|
// Or you can alias the namespace;
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2013-06-27 13:42:07 +04:00
|
|
|
namespace My\Other\Namespace;
|
|
|
|
|
|
|
|
use My\Namespace as SomeOtherNamespace;
|
|
|
|
|
|
|
|
$cls = new SomeOtherNamespace\MyClass();
|
2013-06-27 20:49:03 +04:00
|
|
|
|
2015-10-16 02:04:17 +03:00
|
|
|
|
|
|
|
/**********************
|
|
|
|
* Late Static Binding
|
|
|
|
*
|
2015-10-22 20:06:15 +03:00
|
|
|
*/
|
2015-10-16 02:04:17 +03:00
|
|
|
|
2016-10-26 22:14:11 +03:00
|
|
|
class ParentClass
|
|
|
|
{
|
|
|
|
public static function who()
|
|
|
|
{
|
2015-10-16 02:04:17 +03:00
|
|
|
echo "I'm a " . __CLASS__ . "\n";
|
|
|
|
}
|
2016-10-26 22:14:11 +03:00
|
|
|
|
|
|
|
public static function test()
|
|
|
|
{
|
2015-10-16 02:04:17 +03:00
|
|
|
// self references the class the method is defined within
|
|
|
|
self::who();
|
|
|
|
// static references the class the method was invoked on
|
|
|
|
static::who();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ParentClass::test();
|
|
|
|
/*
|
|
|
|
I'm a ParentClass
|
|
|
|
I'm a ParentClass
|
|
|
|
*/
|
|
|
|
|
2016-10-26 22:14:11 +03:00
|
|
|
class ChildClass extends ParentClass
|
|
|
|
{
|
|
|
|
public static function who()
|
|
|
|
{
|
2015-10-16 02:04:17 +03:00
|
|
|
echo "But I'm " . __CLASS__ . "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ChildClass::test();
|
|
|
|
/*
|
|
|
|
I'm a ParentClass
|
|
|
|
But I'm ChildClass
|
|
|
|
*/
|
|
|
|
|
2015-10-31 20:54:55 +03:00
|
|
|
/**********************
|
|
|
|
* Magic constants
|
2018-10-11 19:11:42 +03:00
|
|
|
*
|
2015-10-31 20:54:55 +03:00
|
|
|
*/
|
|
|
|
|
2015-10-31 21:27:13 +03:00
|
|
|
// Get current class name. Must be used inside a class declaration.
|
|
|
|
echo "Current class name is " . __CLASS__;
|
|
|
|
|
|
|
|
// Get full path directory of a file
|
|
|
|
echo "Current directory is " . __DIR__;
|
|
|
|
|
|
|
|
// Typical usage
|
|
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
|
|
|
|
// Get full path of a file
|
|
|
|
echo "Current file path is " . __FILE__;
|
|
|
|
|
|
|
|
// Get current function name
|
|
|
|
echo "Current function name is " . __FUNCTION__;
|
|
|
|
|
|
|
|
// Get current line number
|
|
|
|
echo "Current line number is " . __LINE__;
|
|
|
|
|
|
|
|
// Get the name of the current method. Only returns a value when used inside a trait or object declaration.
|
|
|
|
echo "Current method is " . __METHOD__;
|
|
|
|
|
|
|
|
// Get the name of the current namespace
|
|
|
|
echo "Current namespace is " . __NAMESPACE__;
|
|
|
|
|
|
|
|
// Get the name of the current trait. Only returns a value when used inside a trait or object declaration.
|
2016-12-03 13:46:23 +03:00
|
|
|
echo "Current trait is " . __TRAIT__;
|
2015-10-16 02:04:17 +03:00
|
|
|
|
2015-10-07 11:01:09 +03:00
|
|
|
/**********************
|
|
|
|
* Error Handling
|
2018-10-11 19:11:42 +03:00
|
|
|
*
|
2013-06-30 01:34:54 +04:00
|
|
|
*/
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2015-10-07 10:12:31 +03:00
|
|
|
// Simple error handling can be done with try catch block
|
|
|
|
|
|
|
|
try {
|
|
|
|
// Do something
|
2015-10-15 23:28:38 +03:00
|
|
|
} catch (Exception $e) {
|
2015-10-07 10:12:31 +03:00
|
|
|
// Handle exception
|
|
|
|
}
|
|
|
|
|
2018-11-02 01:51:54 +03:00
|
|
|
// When using try catch blocks in a namespaced environment it is important to
|
|
|
|
// escape to the global namespace, because Exceptions are classes, and the
|
|
|
|
// Exception class exists in the global namespace. This can be done using a
|
|
|
|
// leading backslash to catch the Exception.
|
2015-10-07 10:12:31 +03:00
|
|
|
|
2015-10-16 02:04:17 +03:00
|
|
|
try {
|
2015-10-07 10:12:31 +03:00
|
|
|
// Do something
|
2018-11-02 01:51:54 +03:00
|
|
|
} catch (\Exception $e) {
|
2015-10-07 10:12:31 +03:00
|
|
|
// Handle exception
|
|
|
|
}
|
|
|
|
|
|
|
|
// Custom exceptions
|
|
|
|
|
|
|
|
class MyException extends Exception {}
|
|
|
|
|
|
|
|
try {
|
2015-10-16 02:04:17 +03:00
|
|
|
|
|
|
|
$condition = true;
|
|
|
|
|
2015-10-07 10:12:31 +03:00
|
|
|
if ($condition) {
|
2017-08-23 11:14:39 +03:00
|
|
|
throw new MyException('Something just happened');
|
2015-10-07 10:12:31 +03:00
|
|
|
}
|
2015-10-16 02:04:17 +03:00
|
|
|
|
2015-10-07 10:12:31 +03:00
|
|
|
} catch (MyException $e) {
|
|
|
|
// Handle my exception
|
|
|
|
}
|
2013-06-27 13:42:07 +04:00
|
|
|
```
|
|
|
|
|
|
|
|
## More Information
|
|
|
|
|
2013-09-09 00:31:46 +04:00
|
|
|
Visit the [official PHP documentation](http://www.php.net/manual/) for reference
|
|
|
|
and community input.
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2013-09-09 00:31:46 +04:00
|
|
|
If you're interested in up-to-date best practices, visit
|
|
|
|
[PHP The Right Way](http://www.phptherightway.com/).
|
2013-06-27 13:42:07 +04:00
|
|
|
|
2018-10-11 19:11:42 +03:00
|
|
|
A tutorial covering basics of language, setting up coding environment and making
|
|
|
|
few practical projects at [Codecourse - PHP Basics](https://www.youtube.com/playlist?list=PLfdtiltiRHWHjTPiFDRdTOPtSyYfz3iLW).
|
|
|
|
|
2013-09-09 00:31:46 +04:00
|
|
|
If you're coming from a language with good package management, check out
|
|
|
|
[Composer](http://getcomposer.org/).
|
2013-06-30 07:25:21 +04:00
|
|
|
|
2013-09-09 00:31:46 +04:00
|
|
|
For common standards, visit the PHP Framework Interoperability Group's
|
2015-10-07 10:12:31 +03:00
|
|
|
[PSR standards](https://github.com/php-fig/fig-standards).
|