The problem is explained simply, I have two arrays:
array(0,1,2,3,4);
array(5,6,7,8,9);
I need both arrays to make one only:
array(0,1,2,3,4,5,6,7,8,9)
But I can not use foreach or while, since they are arrays that contain at least 100 records and that delays the response time, I would like to know if PHP has any native function that does it, something like this:
unir_array(array,array);
I do not know, I always search in English on Google but until now I can not achieve it.