PHP Taskbook Level 1.10
Fill the array with random numbers from 1 to 100.
Given a number:
12345
Print all its characters from the end to the console.
Given some array, for example, like this:
[1, 2, 3, 4, 5, 6]
Output to the console, one by one, the subarrays of two elements of our array:
[1, 2]
[3, 4]
[5, 6]
Two arrays are given:
$arr1 = [1, 2, 3];
$arr2 = [4, 5, 6];
Merge these arrays into a new array:
[1, 2, 3, 4, 5, 6]