learnxinyminutes-docs/php.html.markdown

670 lines
15 KiB
Markdown
Raw Normal View History

2013-06-27 13:42:07 +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
// If your php file only contains PHP code, it is best practise
// to omit the php closing tag.
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
2013-06-30 01:34:54 +04:00
/************************************
* Types & Variables
*/
// Variables begin with the $ symbol.
// A valid variable name starts with a letter or underscore,
// followed by any number of letters, numbers, or underscores.
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
2013-06-27 13:42:07 +04:00
$boolean = false; // or FALSE or False
// Integers
$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)
2013-06-27 13:42:07 +04:00
// Floats (aka doubles)
$float = 1.234;
$float = 1.2e3;
2013-06-27 13:42:07 +04:00
$float = 7E-10;
// 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)
echo ++$number; // Prints 3 (increments before evalutation)
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
2013-06-30 01:34:54 +04:00
$money = "I have $${number} 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 .
echo 'This string ' . 'is concatenated';
2013-06-27 13:42:07 +04:00
/********************************
* Constants
*/
// 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.
define("FOO", "something");
// access to a constant is possible by direct using the choosen name
echo 'This outputs '.FOO;
2013-06-30 01:34:54 +04:00
/********************************
* Arrays
*/
2013-06-27 20:49:03 +04:00
2013-06-30 01:34:54 +04:00
// All arrays in PHP are associative arrays (hashmaps),
2013-06-27 13:42:07 +04:00
// Associative arrays, known as hashmaps in some languages.
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
// List literals implicitly assign integer keys
$array = ['One', 'Two', 'Three'];
echo $array[0]; // => "One"
/********************************
* Output
*/
2013-06-27 20:49:03 +04:00
echo('Hello World!');
// 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
// echo is actually a language construct, so you can drop the parentheses.
echo 'Hello World!';
2013-06-28 00:49:58 +04:00
print 'Hello World!'; // So is print
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
$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
// Dumps type and value of variable to stdout
var_dumb($z); // prints int(0)
// 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-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
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);
assert(1 == '1');
assert(1 !== '1');
2013-06-27 13:42:07 +04:00
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';
} elseif(true) {
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');
2013-06-30 01:34:54 +04:00
$x = 0;
if ($x === '0') {
print 'Does not print';
} elseif($x == '1') {
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';
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++;
2013-06-30 01:34:54 +04:00
}; // Prints "01234"
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 () {
2013-06-30 01:34:54 +04: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
2013-06-30 01:34:54 +04: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) {
2013-06-30 01:34:54 +04:00
return $x + 1;
};
echo $inc(2); // => 3
2013-06-28 01:11:27 +04:00
function foo ($x, $y, $z) {
echo "$x - $y - $z";
}
2013-06-30 01:34:54 +04:00
// Functions can return functions
2013-06-28 01:11:27 +04:00
function bar ($x, $y) {
2013-06-30 01:34:54 +04:00
// Use 'use' to bring in outside variables
2013-06-28 01:11:27 +04:00
return function ($z) use ($x, $y) {
foo($x, $y, $z);
};
}
$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
2013-06-30 07:25:21 +04:00
// Useful for programatically determining which function to run.
// Or, use call_user_func(callable $callback [, $parameter [, ... ]]);
/********************************
* Includes
*/
<?php
// PHP within included files must also begin with a PHP open tag.
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
// Static variables and their visibility
public static $publicStaticVar = 'publicStatic';
private static $privateStaticVar = 'privateStatic'; // Accessible within the class only
protected static $protectedStaticVar = 'protectedStatic'; // Accessible from the class and subclasses
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;
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
2013-06-30 07:25:21 +04: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-30 07:25:21 +04:00
final function youCannotOverrideMe()
{
2013-06-27 13:42:07 +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
}
}
2013-06-30 07:25:21 +04:00
echo MyClass::MY_CONST; // Outputs 'value';
echo MyClass::$staticVar; // Outputs 'static';
MyClass::myStaticMethod(); // Outputs 'I am static';
2013-06-27 13:42:07 +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
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()
{
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-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-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
// 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
2013-06-30 01:34:54 +04:00
*/
2013-06-27 13:42:07 +04:00
```
## More Information
Visit the [official PHP documentation](http://www.php.net/manual/) for reference and community input.
If you're interested in up-to-date best practices, visit [PHP The Right Way](http://www.phptherightway.com/).
2013-06-27 20:35:59 +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
For common standards, visit the PHP Framework Interoperability Group's [PSR standards](https://github.com/php-fig/fig-standards).