<?php $string = <<<IDENTIFIER Some string that is multi-line IDENTIFIER; // IDENTIFIER must not me indented at all ?>
<?php $string = <<<IDENTIFIER Some string that is multi-line IDENTIFIER; // IDENTIFIER can be indented ?>
$obj->method(
$arg1,
$arg2,
$arg3, // <- virgule ici autorisée
);
$arr = ['apple', 'orange'];
list($a, &$b) = $arr;
$b = 'banana';
echo $arr[1]; // affiche 'banana'
Apéro offert par