PHP array merge problem?

how to change the following array

array(2) {
  [0]=>
  array(2) {
    [0]=>
    string(20) "18052910110100956524"
    [1]=>
    string(12) "102101016056"
  }
  [1]=>
  array(1) {
    [0]=>
    string(12) "101101502347"
  }
}

merge into

array(2) {
    [0]=>
    string(20) "18052910110100956524"
    [1]=>
    string(12) "102101016056"
    [2]=>
    string(12) "101101502347"
}
Php
Jan.19,2022

$arr = [
  ["18052910110100956524", "102101016056"],
  ["101101502347"]
];

$result = array_merge(...$arr);

var_dump($result);
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b35b6f-2b801.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b35b6f-2b801.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?