Write a PHP program to create a new array from two give array of integers, each length 3
- برمجة بي اتش بي
- 2021-09-08
- mhanasmh00489829403
الأجوبة
<?php
function test($nums1, $nums2)
{
return [$nums1[0], $nums1[1], $nums1[2], $nums2[0], $nums2[1], $nums2[2]];
}
$result = test([10, 20, 30], [ 40, 50, 60] );
echo "New array: " . implode(',', $result);
Sample Output:
New array: 10,20,30,40,50,60
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال