Hi there I execute 2 query's on 2 diffrend servers with the same table structure. How can I merge the 2 Arrays in PHP?
Teşekkürler
array_merge bir göz atın.
array array_merge ( array $array1 [, array $... ] )
Merges the elements of one or more arrays together so that the values of one are appended to the end of the previous one. It returns the resulting array.
If the input arrays have the same string keys, then the later value for that key will overwrite the previous one. If, however, the arrays contain numeric keys, the later value will not overwrite the original value, but will be appended.
Values in the input array with numeric keys will be renumbered with incrementing keys starting from zero in the result array.
Siz iki veritabanı sunucularını sorgularken, her kayıt için kimlik UUID'sini kullandığınız sürece, Sen kayıtlar (db auto_increment özelliği) ve id yıllardan arasında bir çarpışma olacak, unutmayın.
Bu sonuçlar ile iki dizileri birleştirme zaman kayıtların kimliklerini nesil için UUID kullanarak değil Yani, bir sonraki çarpışmaları önlemek için sunucu ile değil wchich işaretlemeniz gerekir.