PHP ОПЕРАТОР SPREAD
Оператор spread в PHP — это удобный синтаксический сахар, который позволяет распаковывать элементы массива или объекта в список аргументов.
Распаковка массивов:
$arr1 = [1, 2, 3];$arr2 = [4, 5, 6, ...$arr1]; // [4, 5, 6, 1, 2, 3]
Распаковка объектов:
$obj1 = (object) ['x' => 1, 'y' => 2];$obj2 = (object) ['y' => 3, 'z' => 4, ...$obj1]; // (object) ['y' => 2, 'z' => 4, 'x' => 1]
php 7.4 ~ Lesson 5: PHP Spread operator (Unpacking arrays)
Intro to PHP Deserialization / Object Injection
PHP Tutorial for Absolute Beginners - PHP Course 2021 (With subtitles)
PHP Spread Operator #PHP #SpreadOperator #Arrays #FunctionCalls #Programming #coding
Operators in Php - PHP Tutorial #9
PHP OOP Method Chaining Tutorial in Hindi / Urdu
ruphp.com operator and rest operator - Beau teaches JavaScript