У меня установлено несколько версий PHP которые я использую для различных проектов. После установки PHP8.0 дефолтная команда «php» в консоле указывала именно на эту версию. Мне же для большинства проектов нужна была ветка 7.x поэтому я решил разобраться как выбрать версию «по-умолчанию», чтобы каждый раз при запуске комманд из консоли не указывать версию вручную..
Делается это довольно просто.
Смотрим какая версия сейчас
$ php —v PHP 8.0.3 (cli) (built: Mar 5 2021 07:54:13) ( NTS ) Copyright (c) The PHP Group Zend Engine v4.0.3, Copyright (c) Zend Technologies with Zend OPcache v8.0.3, Copyright (c), by Zend Technologies with Xdebug v3.0.3, Copyright (c) 2002—2021, by Derick Rethans |
Запускаем выбор версии, и выбираем желаемую, в моем случае это PHP 7.2, поэтому я ввел номер 4
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
$ sudo update—alternatives —config php There are 7 choices for the alternative php (providing /usr/bin/php). Selection Path Priority Status ———————————————————— * 0 /usr/bin/php.default 100 auto mode 1 /usr/bin/php.default 100 manual mode 2 /usr/bin/php5.6 56 manual mode 3 /usr/bin/php7.0 70 manual mode 4 /usr/bin/php7.2 72 manual mode 5 /usr/bin/php7.3 73 manual mode 6 /usr/bin/php7.4 74 manual mode 7 /usr/bin/php8.0 80 manual mode Press to keep the current choice[*], or type selection number: 4 update—alternatives: using /usr/bin/php7.2 to provide /usr/bin/php (php) in manual mode |
проверяем версию и видим, что она изменилась
$ php —v PHP 7.2.34—18+ubuntu20.04.1+deb.sury.org+1 (cli) (built: Feb 23 2021 15:08:24) ( NTS ) Copyright (c) 1997—2018 The PHP Group Zend Engine v3.2.0, Copyright (c) 1998—2018 Zend Technologies with Zend OPcache v7.2.34—18+ubuntu20.04.1+deb.sury.org+1, Copyright (c) 1999—2018, by Zend Technologies with Xdebug v3.0.3, Copyright (c) 2002—2021, by Derick Rethans |
Автор:
| Рейтинг: 4/5 |
Теги: php , ubuntu
By
/ March 3, 2022 March 21, 2022
In this article, you will learn how to use default keyword in PHP. The default keyword in PHP is used in a switch block to specify which code to run when none of the case statements were matched by the expression.
examples of the DEFAULT keyword
Example 1. In this example, we use default to handle unspecified cases in a switch block.
<?php
$a = 4;
switch($a) {
case 1: echo "One"; break;
case 2: echo "Two"; break;
case 3: echo "Three"; break;
default: echo "Many"; break;
}
?>
Аргументы функции
Функция может принимать информацию в виде списка аргументов,
который является списком разделённых запятыми выражений. Аргументы
вычисляются слева направо перед фактическим вызовом функции (энергичное вычисление).
PHP поддерживает передачу аргументов по значению (по умолчанию), передачу аргументов по ссылке,
и значения по умолчанию.
Списки аргументов
переменной длины и именованные аргументы также поддерживаются.
Пример #1 Передача массива в функцию
<?php
function takes_array($input)
{
echo "$input[0] + $input[1] = ", $input[0]+$input[1];
}
?>
Начиная с PHP 8.0.0, список аргументов функции может содержать завершающую
запятую, которая будет проигнорирована. Это полезно в случае, когда список аргументов
очень длинный, либо если имена переменных длинны, что подталкивает к их
вертикальному расположению.
Пример #2 Список аргументов функции с завершающей запятой
<?php
function takes_many_args(
$first_arg,
$second_arg,
$a_very_long_argument_name,
$arg_with_default = 5,
$again = 'a default string', // Эта завершающая запятая допустима только начиная с 8.0.0.
)
{
// ...
}
?>
Передача аргументов по ссылке
По умолчанию аргументы в функцию передаются по значению (это означает, что
если вы измените значение аргумента внутри функции, то вне её значение
всё равно останется прежним). Если вы хотите разрешить функции
модифицировать свои аргументы, вы должны передавать их по ссылке.
Если вы хотите, чтобы аргумент всегда передавался по ссылке,
вы можете указать амперсанд (&) перед именем аргумента в описании
функции:
Пример #3 Передача аргументов по ссылке
<?php
function add_some_extra(&$string)
{
$string .= 'и кое-что ещё.';
}
$str = 'Это строка, ';
add_some_extra($str);
echo $str; // выведет 'Это строка, и кое-что ещё.'
?>
Передача значения в качестве аргумента,
которое должно передаваться по ссылке, является ошибкой.
Значения аргументов по умолчанию
Функция может определять значения по умолчанию для аргументов,
используя синтаксис, подобный присвоению переменной.
Значение по умолчанию используется только в том случае, если параметр не указан;
в частности, обратите внимание, что передача null
не присваивает значение по умолчанию.
Пример #4 Использование значений по умолчанию в определении функции
<?php
function makecoffee($type = "капучино")
{
return "Готовим чашку $type.n";
}
echo makecoffee();
echo makecoffee(null);
echo makecoffee("эспрессо");
?>
Результат выполнения данного примера:
Готовим чашку капучино. Готовим чашку . Готовим чашку эспрессо.
Значениями параметров по умолчанию могут быть скалярные значения, массивы (array),
специальный тип null
, и, начиная с версии PHP 8.1.0, объекты,
использующие синтаксис new ClassName().
Пример #5 Использование нескалярных типов в качестве значений по умолчанию
<?php
function makecoffee($types = array("капучино"), $coffeeMaker = NULL)
{
$device = is_null($coffeeMaker) ? "вручную" : $coffeeMaker;
return "Готовлю чашку ".join(", ", $types)." $device.n";
}
echo makecoffee();
echo makecoffee(array("капучино", "лавацца"), "в чайнике");
?>
Пример #6 Использование объектов в качестве значений по умолчанию (начиная с PHP 8.1.0)
<?php
class DefaultCoffeeMaker {
public function brew() {
return 'Приготовление кофе.';
}
}
class FancyCoffeeMaker {
public function brew() {
return 'Приготовление прекрасного кофе специально для вас.';
}
}
function makecoffee($coffeeMaker = new DefaultCoffeeMaker)
{
return $coffeeMaker->brew();
}
echo makecoffee();
echo makecoffee(new FancyCoffeeMaker);
?>
Значение по умолчанию должно быть константным выражением, а не
(к примеру) переменной или вызовом функции/метода класса.
Обратите внимание, что любые необязательные аргументы должны быть указаны после любых обязательных аргументов,
иначе они не могут быть опущены при вызове.
Рассмотрим следующий пример:
Пример #7 Некорректное использование значений по умолчанию
<?php
function makeyogurt($container = "миску", $flavour)
{
return "Делаем $container с $flavour йогуртом.n";
}
echo
makeyogurt("малиновым"); // "малиновым" - это $container, не $flavour
?>
Результат выполнения данного примера:
Fatal error: Uncaught ArgumentCountError: Too few arguments to function makeyogurt(), 1 passed in example.php on line 42
Теперь сравним его со следующим примером:
Пример #8 Корректное использование значений по умолчанию
<?php
function makeyogurt($flavour, $container = "миску")
{
return "Делаем $container с $flavour йогуртом.n";
}
echo
makeyogurt("малиновым"); // "малиновым" - это $flavour
?>
Результат выполнения данного примера:
Делаем миску с малиновым йогуртом.
Начиная с PHP 8.0.0, именованные аргументы
можно использовать для пропуска нескольких необязательных параметров.
Пример #9 Правильное использование аргументов функций по умолчанию
<?php
function makeyogurt($container = "миску", $flavour = "малиновым", $style = "греческим")
{
return "Делаем $container с $flavour $style йогуртом.n";
}
echo makeyogurt(style: "натуральным");
?>
Результат выполнения данного примера:
Делаем миску с малиновым натуральным йогуртом.
Начиная с PHP 8.0.0, объявление обязательных аргументов после необязательных
аргументов является устаревшим.
Обычно это можно решить отказавшись от значения по умолчанию, поскольку оно никогда не будет использоваться.
Исключением из этого правила являются аргументы вида Type $param = null
,
где null
по умолчанию делает тип неявно обнуляемым.
Такое использование остаётся допустимым, хотя рекомендуется использовать
явный тип nullable.
Пример #10 Объявление необязательных аргументов после обязательных аргументов
<?php
function foo($a = [], $b) {} // По умолчанию не используется; устарел, начиная с версии PHP 8.0.0
function foo($a, $b) {} // Функционально эквивалентны, без уведомления об устаревании
function bar(A $a = null, $b) {} // Все еще разрешено; $a является обязательным, но допускающим значение null
function bar(?A $a, $b) {} // Рекомендуется
?>
Замечание:
Начиная с PHP 7.1.0, опущение параметра, не заданного по умолчанию,
выбрасывает исключение ArgumentCountError;
в предыдущих версиях это вызывало предупреждение.
Замечание:
Значения по умолчанию могут быть переданы по ссылке.
Списки аргументов переменной длины
PHP поддерживает списки аргументов переменной длины для функций,
определяемых пользователем с помощью добавления
многоточия (...
).
Замечание:
Также можно добиться аргументов переменной длины, используя функции
func_num_args(),
func_get_arg() и
func_get_args().
Этот метод не рекомендуется, поскольку он использовался до введения
многоточия (...
).
Список аргументов может содержать многоточие
(...
), чтобы показать, что функция принимает переменное
количество аргументов. Аргументы в этом случае будут переданы в виде массива:
Пример #11 Использование ...
для доступа к аргументам
<?php
function sum(...$numbers) {
$acc = 0;
foreach ($numbers as $n) {
$acc += $n;
}
return $acc;
}
echo
sum(1, 2, 3, 4);
?>
Результат выполнения данного примера:
Многоточие (...
) можно использовать при вызове функции,
чтобы распаковать массив (array) или Traversable
переменную в список аргументов:
Пример #12 Использование ...
для передачи аргументов
<?php
function add($a, $b) {
return $a + $b;
}
echo
add(...[1, 2])."n";$a = [1, 2];
echo add(...$a);
?>
Результат выполнения данного примера:
Можно задать несколько аргументов в привычном виде, а затем добавить
...
. В этом случае ...
поместит
в массив только те аргументы, которые не нашли соответствия указанным
в объявлении функции.
Также можно добавить
объявление типа перед
...
. В этом случае все аргументы,
обработанные многоточием (...
), должны соответствовать этому типу параметра.
Пример #13 Аргументы с подсказкой типа
<?php
function total_intervals($unit, DateInterval ...$intervals) {
$time = 0;
foreach ($intervals as $interval) {
$time += $interval->$unit;
}
return $time;
}$a = new DateInterval('P1D');
$b = new DateInterval('P2D');
echo total_intervals('d', $a, $b).' days';// Это не сработает, т.к. null не является объектом DateInterval.
echo total_intervals('d', null);
?>
Результат выполнения данного примера:
3 days Catchable fatal error: Argument 2 passed to total_intervals() must be an instance of DateInterval, null given, called in - on line 14 and defined in - on line 2
В конце концов, можно передавать аргументы
по ссылке. Для этого
перед ...
нужно поставить амперсанд
(&
).
Предыдущие версии PHP
Для указания того, что функция принимает переменное число аргументов,
никакой специальный синтаксис не используется. Для доступа к аргументам
необходимо использовать функции
func_num_args(), func_get_arg()
и func_get_args().
В первом примере выше было показано, как задать список аргументов переменной длины
для предыдущих версий PHP:
Пример #14 Доступ к аргументам в предыдущих версиях PHP
<?php
function sum() {
$acc = 0;
foreach (func_get_args() as $n) {
$acc += $n;
}
return $acc;
}
echo
sum(1, 2, 3, 4);
?>
Результат выполнения данного примера:
Именованные аргументы
В PHP 8.0.0 в виде продолжения позиционных параметров появились именованные аргументы.
С их помощью аргументы
функции можно передавать по имени параметра, а не по его позиции.
Таким образом аргумент становится самодокументированным, независимым от
порядка и указанного значения по умолчанию.
Именованные аргументы передаются путём добавления через двоеточия имени параметра перед его значением.
В качестве имён параметров можно использовать зарезервированные ключевые слова.
Имя параметра должно быть идентификатором, т.е. он не может быть создан
динамически.
Пример #15 Синтаксис именованного аргумента
<?php
myFunction(paramName: $value);
array_foobar(array: $value);// НЕ поддерживается.
function_name($variableStoringParamName: $value);
?>
Пример #16 Позиционные аргументы в сравнении с именованными аргументами
<?php
// Использование позиционных аргументов:
array_fill(0, 100, 50);// Использование именованных аргументов:
array_fill(start_index: 0, count: 100, value: 50);
?>
Порядок, в котором передаются именованные аргументы, не имеет значения.
Пример #17 Тот же пример, что и выше, но с другим порядком параметров
<?php
array_fill(value: 50, count: 100, start_index: 0);
?>
Именованные аргументы можно комбинировать с позиционными. В этом случае
именованные аргументы должны следовать после позиционных аргументов.
Также возможно передать только часть необязательных аргументов
функции, независимо от их порядка.
Пример #18 Объединение именованных аргументов с позиционными аргументами
<?php
htmlspecialchars($string, double_encode: false);
// То же самое
htmlspecialchars($string, ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401, 'UTF-8', false);
?>
Передача одного и того же параметра несколько раз приводит к выбрасыванию исключения Error.
Пример #19 Ошибка, возникающая при передаче одного и того же параметра несколько раз
<?php
function foo($param) { ... }foo(param: 1, param: 2);
// Error: Named parameter $param overwrites previous argument
foo(1, param: 2);
// Error: Named parameter $param overwrites previous argument
?>
Начиная с PHP 8.1.0, можно использовать именованные аргументы после распаковки аргументов.
Именованный аргумент не должен переопределять уже распакованные аргументы.
Пример #20 Пример использования именованных аргументов после распаковки
<?php
function foo($a, $b, $c = 3, $d = 4) {
return $a + $b + $c + $d;
}
var_dump(foo(...[1, 2], d: 40)); // 46
var_dump(foo(...['b' => 2, 'a' => 1], d: 40)); // 46
var_dump(foo(...[1, 2], b: 20)); // Фатальная ошибка. Именованный аргумент $b переопределяет предыдущий аргумент
?>
php at richardneill dot org ¶
8 years ago
To experiment on performance of pass-by-reference and pass-by-value, I used this script. Conclusions are below.
#!/usr/bin/php
<?php
function sum($array,$max){ //For Reference, use: "&$array"
$sum=0;
for ($i=0; $i<2; $i++){
#$array[$i]++; //Uncomment this line to modify the array within the function.
$sum += $array[$i];
}
return ($sum);
}$max = 1E7 //10 M data points.
$data = range(0,$max,1);$start = microtime(true);
for ($x = 0 ; $x < 100; $x++){
$sum = sum($data, $max);
}
$end = microtime(true);
echo "Time: ".($end - $start)." sn";/* Run times:
# PASS BY MODIFIED? Time
- ------- --------- ----
1 value no 56 us
2 reference no 58 us
3 valuue yes 129 s
4 reference yes 66 us
Conclusions:
1. PHP is already smart about zero-copy / copy-on-write. A function call does NOT copy the data unless it needs to; the data is
only copied on write. That's why #1 and #2 take similar times, whereas #3 takes 2 million times longer than #4.
[You never need to use &$array to ask the compiler to do a zero-copy optimisation; it can work that out for itself.]
2. You do use &$array to tell the compiler "it is OK for the function to over-write my argument in place, I don't need the original
any more." This can make a huge difference to performance when we have large amounts of memory to copy.
(This is the only way it is done in C, arrays are always passed as pointers)
3. The other use of & is as a way to specify where data should be *returned*. (e.g. as used by exec() ).
(This is a C-like way of passing pointers for outputs, whereas PHP functions normally return complex types, or multiple answers
in an array)
4. It's unhelpful that only the function definition has &. The caller should have it, at least as syntactic sugar. Otherwise
it leads to unreadable code: because the person reading the function call doesn't expect it to pass by reference. At the moment,
it's necessary to write a by-reference function call with a comment, thus:
$sum = sum($data,$max); //warning, $data passed by reference, and may be modified.
5. Sometimes, pass by reference could be at the choice of the caller, NOT the function definitition. PHP doesn't allow it, but it
would be meaningful for the caller to decide to pass data in as a reference. i.e. "I'm done with the variable, it's OK to stomp
on it in memory".
*/
?>
tesdy14 at gmail dot com ¶
1 year ago
function my_fonction(string $value) {
echo $value . PHP_EOL;
}
my_fonction(['foo' => 'ko', 'bar' => 'not', 'goodValue' => 'Oh Yeah']['goodValue']);
// return 'Oh Yeah'
// This may sound strange, anyway it's very useful in a foreach (or other conditional structure).
$expectedStatusCodes = [404, 403];
function getValueFromArray(string $value): string
{
return $value . PHP_EOL;
}
foreach ($expectedStatusCodes as $code) {
echo $currentUserReference = getValueFromArray(
[
404 => "Doesn't exist",
403 => 'Forbidden',
200 => "you're welcome"
][$code]
);
}
LilyWhite ¶
1 year ago
It is worth noting that you can use functions as function arguments
<?php
function run($op, $a, $b) {
return $op($a, $b);
}$add = function($a, $b) {
return $a + $b;
};$mul = function($a, $b) {
return $a * $b;
};
echo
run($add, 1, 2), "n";
echo run($mul, 1, 2);
?>
Output:
3
2
gabriel at figdice dot org ¶
6 years ago
A function's argument that is an object, will have its properties modified by the function although you don't need to pass it by reference.
<?php
$x = new stdClass();
$x->prop = 1;
function
f ( $o ) // Notice the absence of &
{
$o->prop ++;
}f($x);
echo
$x->prop; // shows: 2
?>
This is different for arrays:
<?php
$y = [ 'prop' => 1 ];
function
g( $a )
{
$a['prop'] ++;
echo $a['prop']; // shows: 2
}g($y);
echo
$y['prop']; // shows: 1
?>
Hayley Watson ¶
5 years ago
There are fewer restrictions on using ... to supply multiple arguments to a function call than there are on using it to declare a variadic parameter in the function declaration. In particular, it can be used more than once to unpack arguments, provided that all such uses come after any positional arguments.
<?php
$array1
= [[1],[2],[3]];
$array2 = [4];
$array3 = [[5],[6],[7]];$result = array_merge(...$array1); // Legal, of course: $result == [1,2,3];
$result = array_merge($array2, ...$array1); // $result == [4,1,2,3]
$result = array_merge(...$array1, $array2); // Fatal error: Cannot use positional argument after argument unpacking.
$result = array_merge(...$array1, ...$array3); // Legal! $result == [1,2,3,5,6,7]
?>
The Right Thing for the error case above would be for $result==[1,2,3,4], but this isn't yet (v7.1.8) supported.
boan dot web at outlook dot com ¶
5 years ago
Quote:
"The declaration can be made to accept NULL values if the default value of the parameter is set to NULL."
But you can do this (PHP 7.1+):
<?php
function foo(?string $bar) {
//...
}foo(); // Fatal error
foo(null); // Okay
foo('Hello world'); // Okay
?>
jcaplan at bogus dot amazon dot com ¶
17 years ago
In function calls, PHP clearly distinguishes between missing arguments and present but empty arguments. Thus:
<?php
function f( $x = 4 ) { echo $x . "\n"; }
f(); // prints 4
f( null ); // prints blank line
f( $y ); // $y undefined, prints blank line
?>
The utility of the optional argument feature is thus somewhat diminished. Suppose you want to call the function f many times from function g, allowing the caller of g to specify if f should be called with a specific value or with its default value:
<?php
function f( $x = 4 ) {echo $x . "\n"; }// option 1: cut and paste the default value from f's interface into g's
function g( $x = 4 ) { f( $x ); f( $x ); }// option 2: branch based on input to g
function g( $x = null ) { if ( !isset( $x ) ) { f(); f() } else { f( $x ); f( $x ); } }
?>
Both options suck.
The best approach, it seems to me, is to always use a sentinel like null as the default value of an optional argument. This way, callers like g and g's clients have many options, and furthermore, callers always know how to omit arguments so they can omit one in the middle of the parameter list.
<?php
function f( $x = null ) { if ( !isset( $x ) ) $x = 4; echo $x . "\n"; }
function
g( $x = null ) { f( $x ); f( $x ); }f(); // prints 4
f( null ); // prints 4
f( $y ); // $y undefined, prints 4
g(); // prints 4 twice
g( null ); // prints 4 twice
g( 5 ); // prints 5 twice?>
Sergio Santana: ssantana at tlaloc dot imta dot mx ¶
17 years ago
PASSING A "VARIABLE-LENGTH ARGUMENT LIST OF REFERENCES" TO A FUNCTION
As of PHP 5, Call-time pass-by-reference has been deprecated, this represents no problem in most cases, since instead of calling a function like this:
myfunction($arg1, &$arg2, &$arg3);
you can call it
myfunction($arg1, $arg2, $arg3);
provided you have defined your function as
function myfuncion($a1, &$a2, &$a3) { // so &$a2 and &$a3 are
// declared to be refs.
... <function-code>
}
However, what happens if you wanted to pass an undefined number of references, i.e., something like:
myfunction(&$arg1, &$arg2, ..., &$arg-n);?
This doesn't work in PHP 5 anymore.
In the following code I tried to amend this by using the
array() language-construct as the actual argument in the
call to the function.
<?phpfunction aa ($A) {
// This function increments each
// "pseudo-argument" by 2s
foreach ($A as &$x) {
$x += 2;
}
}$x = 1; $y = 2; $z = 3;aa(array(&$x, &$y, &$z));
echo "--$x--$y--$z--n";
// This will output:
// --3--4--5--
?>
I hope this is useful.
Sergio.
catman at esteticas dot se ¶
7 years ago
I wondered if variable length argument lists and references works together, and what the syntax might be. It is not mentioned explicitly yet in the php manual as far as I can find. But other sources mention the following syntax "&...$variable" that works in php 5.6.16.
<?php
function foo(&...$args)
{
$i = 0;
foreach ($args as &$arg) {
$arg = ++$i;
}
}
foo($a, $b, $c);
echo 'a = ', $a, ', b = ', $b, ', c = ', $c;
?>
Gives
a = 1, b = 2, c = 3
info at keraweb dot nl ¶
5 years ago
You can use a class constant as a default parameter.
<?phpclass A {
const FOO = 'default';
function bar( $val = self::FOO ) {
echo $val;
}
}$a = new A();
$a->bar(); // Will echo "default"
Hayley Watson ¶
5 years ago
If you use ... in a function's parameter list, you can use it only once for obvious reasons. Less obvious is that it has to be on the LAST parameter; as the manual puts it: "You may specify normal positional arguments BEFORE the ... token. (emphasis mine).
<?php
function variadic($first, ...$most, $last)
{/*etc.*/}variadic(1, 2, 3, 4, 5);
?>
results in a fatal error, even though it looks like the Thing To Do™ would be to set $first to 1, $most to [2, 3, 4], and $last to 5.
Simmo at 9000 dot 000 ¶
1 year ago
For anyone just getting started with php or searching, for an understanding, on what this page describes as a "... token" in Variable-length arguments:
https://www.php.net/manual/en/functions.arguments.php#functions.variable-arg-list
<?php
func
($a, ...$b) ?>
The 3 dots, or elipsis, or "...", or dot dot dot is sometimes called the "spread operator" in other languages.
As this is only used in function arguments, it is probably not technically an true operator in PHP. (As of 8.1 at least?).
(With having an difficult to search for name like "... token", I hope this note helps someone).
TwystO ¶
1 year ago
As stated in the documentation, the ... token can be used to pass an array of parameters to a function.
But it also works for class constructors as you can see below :
<?phpclass Courtesy {
public string $firstname;
public string $lastname;
public function
__construct($firstname, $lastname) {
$this->firstname = $firstname;
$this->lastname = $lastname;
}
public function
hello() {
return 'Hello ' . $this->firstname . ' ' . $this->lastname . '!';
}
}$params = [ 'John', 'Doe' ];$courtesy = new Courtesy(...$params);
echo
$courtesy->hello();?>
Horst Schirmeier ¶
9 years ago
Editor's note: what is expected here by the parser is a non-evaluated expression. An operand and two constants requires evaluation, which is not done by the parser. However, this feature is included as of PHP 5.6.0. See this page for more information: http://php.net/migration56.new-features#migration56.new-features.const-scalar-exprs
--------
"The default value must be a constant expression" is misleading (or even wrong). PHP 5.4.4 fails to parse this function definition:
function htmlspecialchars_latin1($s, $flags = ENT_COMPAT | ENT_HTML401) {}
This yields a " PHP Parse error: syntax error, unexpected '|', expecting ')' " although ENT_COMPAT|ENT_HTML401 is certainly what a compiler-affine person would call a "constant expression".
The obvious workaround is to use a single special value ($flags = NULL) as the default, and to set it to the desired value in the function's body (if ($flags === NULL) { $flags = ENT_COMPAT | ENT_HTML401; }).
tianyiw at vip dot qq dot com ¶
8 months ago
<?php
/**
* Create an array using Named Parameters.
*
* @param mixed ...$values
* @return array
*/
function arr(mixed ...$values): array
{
return $values;
}$arr = arr(
name: 'php',
mobile: 123456,
);var_dump($arr);
// array(2) {
// ["name"]=>
// string(3) "php"
// ["mobile"]=>
// int(123456)
// }
dmitry dot balabka at gmail dot com ¶
4 years ago
There is a possibility to use parent keyword as type hint which is not mentioned in the documentation.
Following code snippet will be executed w/o errors on PHP version 7. In this example, parent keyword is referencing on ParentClass instead of ClassTrait.
<?php
namespace TestTypeHints;
class
ParentClass
{
public function someMethod()
{
echo 'Some method called' . PHP_EOL;
}
}
trait
ClassTrait
{
private $original;
public function
__construct(parent $original)
{
$this->original = $original;
}
protected function
getOriginal(): parent
{
return $this->original;
}
}
class
Implementation extends ParentClass
{
use ClassTrait;
public function
callSomeMethod()
{
$this->getOriginal()->someMethod();
}
}$obj = new Implementation(new ParentClass());
$obj->callSomeMethod();
?>
Outputs:
Some method called
John ¶
16 years ago
This might be documented somewhere OR obvious to most, but when passing an argument by reference (as of PHP 5.04) you can assign a value to an argument variable in the function call. For example:
function my_function($arg1, &$arg2) {
if ($arg1 == true) {
$arg2 = true;
}
}
my_function(true, $arg2 = false);
echo $arg2;
outputs 1 (true)
my_function(false, $arg2 = false);
echo $arg2;
outputs 0 (false)
igorsantos07 at gmail dot com ¶
5 years ago
PHP 7+ does type coercion if strict typing is not enabled, but there's a small gotcha: it won't convert null values into anything.
You must explicitly set your default argument value to be null (as explained in this page) so your function can also receive nulls.
For instance, if you type an argument as "string", but pass a null variable into it, you might expect to receive an empty string, but actually, PHP will yell at you a TypeError.
<?php
function null_string_wrong(string $str) {
var_dump($str);
}
function null_string_correct(string $str = null) {
var_dump($str);
}
$null = null;
null_string_wrong('a'); //string(1) "a"
null_string_correct('a'); //string(1) "a"
null_string_correct(); //NULL
null_string_correct($null); //NULL
null_string_wrong($null); //TypeError thrown
?>
rsperduta at gmail dot com ¶
2 years ago
About example #2: That little comma down at the end and often obscured by a line comment is easily over looked. I think it's worth considering putting it at the head of the next line to make clear what it's relationship is to the surrounding lines. Consider how much clearer it's continuation as a list of parameters:
<?php
function takes_many_args(
$first_arg // some description
, $second_arg // another comment
, $a_very_long_argument_name = something($complicated) // IDK
, $arg_with_default = 5
, $again = 'a default string', // IMHO this trailing comma encourages illegible code and not being permitted seemed a good idea lost with 8.0.0.
) {
// ...
}
?>
This principle can be applied equally to complicated boolean expressions of an "if" statement (or the parts of a for statement).
Luna ¶
5 months ago
When using named arguments and adding default values only to some of the arguments, the arguments with default values must be specified at the end or otherwise PHP throws an error:
<?phpfunction test1($a, $c, $b = 2)
{
return $a + $b + $c;
}
function
test2($a, $b = 2, $c)
{
return $a + $b + $c;
}
echo
test1(a: 1, c: 3)."n"; // Works
echo test2(a: 1, c: 3)."n"; // ArgumentCountError: Argument #2 ($b) not passed?>
I assume that this happens because internally PHP rewrites the calls to something like test1(1, 3) and test2(1, , 3). The first call is valid, but the second obviously isn't.
shaman_master at list dot ru ¶
3 years ago
You can use the class/interface as a type even if the class/interface is not defined yet or the class/interface implements current class/interface.
<?php
interface RouteInterface
{
public function getGroup(): ?RouteGroupInterface;
}
interface RouteGroupInterface extends RouteInterface
{
public function set(RouteInterface $item);
}
?>
'self' type - alias to current class/interface, it's not changed in implementations. This code looks right but throw error:
<?php
class Route
{
protected $name;
// method must return Route object
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
}
class RouteGroup extends Route
{
// method STILL must return only Route object
public function setName(string $name): self
{
$name .= ' group';
return parent::setName($name);
}
}
?>
- PHP
switch-case
- Используйте оператор
default
в оператореswitch-case
в PHP - Используйте оператор
default
Без оператораbreak
в PHPswitch-case
Мы представим операторы switch case в PHP. Мы опишем различные сценарии переключения вариантов и то, как код обрабатывает эти случаи. Затем мы познакомимся с оператором break
и его использованием в операторе switch case в PHP.
Мы проверим, выполняется ли кейс default
, если перед ним существует соответствующий кейс. В этом методе мы удалим оператор break
, чтобы проверить результат.
PHP switch-case
Оператор switch-case
является условным и является альтернативой оператору if-elseif-else
. Оператор проверяет переменную для нескольких случаев, пока не найдет правильное совпадение, и выполняет его в соответствии с совпадением. Мы можем использовать оператор switch
, чтобы проверить переменную, и оператор case
, чтобы указать случай, который нужно проверить. Мы пишем фрагмент кода после оператора case, чтобы выполнить код, если регистр совпадает.
Оператор switch-case
отличается от оператора if-elseif-else
одним отличием. Оператор if-elseif-else
выполняет единственный код после того, как условие истинно, и прерывает условную проверку. Но в операторе switch case проверяется каждый случай, и выполняется каждый соответствующий код. Чтобы избавиться от проблемы, мы используем оператор break
. Когда регистр совпадает и соответствующие коды выполняются, выполнение доходит до оператора break
, и условная проверка прерывается. Поэтому мы пишем оператор break
в конце каждого кейса.
Например, создайте переменную $favfood
и присвойте ей значение pizza
. Напишите оператор switch
, взяв в скобки переменную $favfood
. Внутри оператора switch напишите case
и укажите case momo
как case
momo :
. Не пропускайте двоеточие после значения. Используйте оператор echo
под регистром и выведите на экран сообщение Your favorite food is momo!
. Напишите оператор break
после отображения сообщения. Точно так же напишите падежи для spaghetti
и pizza
, как вы делали для momo
, отобразите сообщение соответствующим образом и напишите break
для каждого случая.
В приведенном ниже примере отображается сообщение Your favorite food is pizza!
потому что переменная $favfood
содержит значение pizza
. Во-первых, тестируется корпус momo
. Поскольку он не совпадает, исполнение переходит в сторону корпуса spaghetti
. Этот случай тоже не совпадает, но случай pizza
совпадает. Затем он отображает соответствующее сообщение и выполняет оператор break
. Оператор break
завершает весь оператор switch case, предотвращая выполнение дальнейшего кода.
Пример кода:
# php 7.*
<?php
$favfood = "pizza";
switch ($favfood) {
case "momo":
echo "Your favorite food is momo!";
break;
case "spaghetti":
echo "Your favorite food is spaghetti!";
break;
case "pizza":
echo "Your favorite food is pizza!";
break;
case "burger":
echo "Your favorite food is burger!";
break;
}
?>
Выход:
Your favorite color is pizza!
Используйте оператор default
в операторе switch-case
в PHP
Мы можем использовать оператор default
в операторе switch-case
для обозначения случаев, которые не соответствуют указанным выше случаям. Другими словами, оператор default
будет выполнен, если ни один из вариантов не совпадет. В конце всех кейсов пишем дефолтный
оператор. В приведенном выше примере регистр по умолчанию отсутствует. Если ни один из упомянутых случаев не соответствует, код ничего не выводит. Таким образом, утверждение default
относится к остальным случаям.
Мы можем изменить первый пример кода, чтобы проиллюстрировать использование оператора default
. Например, присвойте значение spaghetti
переменной $favfood
. Убрать кодовые блоки корпуса spaghetti
и добавить оператор по умолчанию. Внутри оператора default
отобразите сообщение We could not find your favorite food
. Напишите break
после сообщения.
В приведенном ниже примере ни один из указанных случаев не соответствует. Итак, элемент управления переходит к заявлению default
. Затем отображается соответствующее сообщение. Если бы мы не удалили блоки кода spaghetti
, оператор по умолчанию не был бы выполнен. Показывалось сообщение Your favorite food is spaghetti!
. Оператор break
прервет условную проверку, если регистр совпадет.
Пример кода:
#php 7.x
<?php
$favfood = "spaghetti";
switch ($favfood) {
case "momo":
echo "Your favorite food is momo!";
break;
case "pizza":
echo "Your favorite food is pizza!";
break;
case "burger":
echo "Your favorite food is burger!";
break;
default:
echo "We could not find your favorite food";
break;
}
?>
Выход:
We could not find your favorite food
Используйте оператор default
Без оператора break
в PHP switch-case
Мы можем использовать оператор default
в случае switch без использования оператора break
, чтобы проверить, будет ли блок default
выполнять перед ним соответствующий case. Мы можем немного изменить приведенный выше пример кода для демонстрации. Например, присвоите $favfood
значению momo
. Напишите регистры и блоки кода для momo
, pizza
, burger
и default
соответственно. Не пишите оператор break
ни в одном из блоков кода.
В приведенном ниже примере выполнение проходит по всем случаям и отображает все сообщения. Даже если ранее были совпадающие случаи, блок по умолчанию будет выполняться вместе с блоками, за которыми следует соответствующий регистр. Это потому, что мы опустили оператор break
.
Пример кода:
#php 7.x
<?php
$favfood = "momo";
switch ($favfood) {
case "momo":
echo "Your favorite food is momo!"."<br>";
case "pizza":
echo "Your favorite food is pizza!"."<br>";
case "burger":
echo "Your favorite food is burger!"."<br>";
default:
echo "We could not find your favorite food"."<br>";
}
?>
Выход:
Your favorite food is momo!
Your favorite food is pizza!
Your favorite food is burger!
We could not find your favorite food.
what does the keyword default
in php do? there’s no documentation on http://php.net/default, but i get an error when using it as a function name: »unexpected T_DEFAULT, expecting T_STRING«
what does it do/where can i find information about it?
asked Sep 5, 2010 at 12:31
3
default
is part of the switch
statement:
switch ($cond) {
case 1:
echo '$cond==1';
break;
case 2:
echo '$cond==2';
break;
default:
echo '$cond=="whatever"';
}
answered Sep 5, 2010 at 12:34
bcoscabcosca
17.3k5 gold badges40 silver badges51 bronze badges
0
The default
keyword is used in the switch
construct:
$value = 'A';
switch ($value) {
case 'A':
case 'B':
echo '$value is either A or B.';
break;
case 'C':
echo '$value is C.';
break;
default:
echo '$value is neither A, nor B, nor C.';
}
The default case matches anything that wasn’t matched by the other cases.
answered Sep 5, 2010 at 12:32
GumboGumbo
640k108 gold badges774 silver badges843 bronze badges
Adding to others answers:
default
is a PHP keyword and keywords cannot be used as function name.
When you try:
function default () {
....
}
PHP expects to see a T_STRING
( an identifier) after the keyword function
but sees a T_DEFAULT
and flags a parse/syntax error:
unexpected T_DEFAULT, expecting T_STRING
answered Sep 5, 2010 at 12:41
codaddictcodaddict
443k81 gold badges492 silver badges528 bronze badges
0