Bu movzumda php 8 ile gelen kodlari paylasacam.
3 G GameKing Məhşur istifadəçi Silver istifadeci Qoşuldu 10 Sen 2022 Mesajlar 235 Reaksiya hesabı 117 Xallar 43 11 May 2023 #1 Bu movzumda php 8 ile gelen kodlari paylasacam.
3 G GameKing Məhşur istifadəçi Silver istifadeci Qoşuldu 10 Sen 2022 Mesajlar 235 Reaksiya hesabı 117 Xallar 43 11 May 2023 #2 php match() metodu... PHP: $paymentStatus = 1; $paymentStatusDisplay = match($paymentStatus) { 1 => 'Paid', 2,3 => 'Payment Declined', 0 => 'Pending Payment', default => 'Unknown Payment Status', }; echo $paymentStatusDisplay; //output: Paid
php match() metodu... PHP: $paymentStatus = 1; $paymentStatusDisplay = match($paymentStatus) { 1 => 'Paid', 2,3 => 'Payment Declined', 0 => 'Pending Payment', default => 'Unknown Payment Status', }; echo $paymentStatusDisplay; //output: Paid
2 m0llayev Aktiv istifadəçi istifadeci Qoşuldu 29 Apr 2023 Mesajlar 65 Reaksiya hesabı 13 Xallar 8 12 May 2023 #3 Təşəkkürlər
3 G GameKing Məhşur istifadəçi Silver istifadeci Qoşuldu 10 Sen 2022 Mesajlar 235 Reaksiya hesabı 117 Xallar 43 12 May 2023 #4 PHP: //multiple types for a function function foo(): int|float|array { return []; } var_dump(foo());
3 G GameKing Məhşur istifadəçi Silver istifadeci Qoşuldu 10 Sen 2022 Mesajlar 235 Reaksiya hesabı 117 Xallar 43 12 May 2023 #5 PHP: //mixed type for a function function foo(): mixed { return []; } var_dump(foo());
3 G GameKing Məhşur istifadəçi Silver istifadeci Qoşuldu 10 Sen 2022 Mesajlar 235 Reaksiya hesabı 117 Xallar 43 12 May 2023 #6 PHP: //function parameters multiple types function foo(int|float $x, int|float $y) { return $x * $y; } echo foo(5.0, 10);
PHP: //function parameters multiple types function foo(int|float $x, int|float $y) { return $x * $y; } echo foo(5.0, 10);
3 G GameKing Məhşur istifadəçi Silver istifadeci Qoşuldu 10 Sen 2022 Mesajlar 235 Reaksiya hesabı 117 Xallar 43 12 May 2023 #7 PHP: function foo(int $x, int $y): int { if($x % $y === 0) { return $x / $y; } return $x; } $x = 6; $y = 3; //named arguments echo foo(y: $y, x: $x);
PHP: function foo(int $x, int $y): int { if($x % $y === 0) { return $x / $y; } return $x; } $x = 6; $y = 3; //named arguments echo foo(y: $y, x: $x);
3 G GameKing Məhşur istifadəçi Silver istifadeci Qoşuldu 10 Sen 2022 Mesajlar 235 Reaksiya hesabı 117 Xallar 43 12 May 2023 #8 PHP: function foo(int $x, int $y): int { if($x % $y === 0) { return $x / $y; } return $x; } //named argument as array $arr = ['x' => 6, 'y' => 3]; echo foo(...$arr);
PHP: function foo(int $x, int $y): int { if($x % $y === 0) { return $x / $y; } return $x; } //named argument as array $arr = ['x' => 6, 'y' => 3]; echo foo(...$arr);