From e5303d7ea0302e96dbfdd0ed464345cca980c5e8 Mon Sep 17 00:00:00 2001 From: Andres Aya Date: Fri, 14 Apr 2023 22:23:55 -0500 Subject: [PATCH] add example spread operator --- languages/php.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/languages/php.php b/languages/php.php index 62ec245..9404235 100644 --- a/languages/php.php +++ b/languages/php.php @@ -602,3 +602,8 @@ echo $host; // domain-name.com $text = "A regular expression (shortened as regex) is a sequence of characters that define a search pattern. Usually such patterns are used by string-searching algorithms for 'find' or 'find and replace' operations on strings, or for input validation."; $text = preg_replace("/\b(regex)\b/i", 'replaced content', $text); echo $text; /*A regular expression (shortened as replaced content) is a sequence of characters that define a search pattern. Usually such patterns are used by string-searching algorithms for 'find' or 'find and replace' operations on strings, or for input validation.*/ + +// spread operator > PHP 7.4 +$array1 = [1, 2, 3]; +$array2 = [4, 5, 6]; +$merge_array = [0, ...$array1, ...$array2]; // [0, 1, 2, 3, 4, 5, 6] \ No newline at end of file