document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. $fruits = array('Apple','Banana','Mango');
  3. $fruits1 = array('Orange','Dragonfruit','Grape');
  4. $seluruhnya = array_merge($fruits,$fruits1);
  5. print_r($seluruhnya); exit();
  6. ?>
  7.  
  8. #HASIL RUNNING
  9. Array (
  10. [0] => Apple
  11. [1] => Banana
  12. [2] => Mango
  13. [3] => Orange
  14. [4] => Dragonfruit
  15. [5] => Grape
  16. )
');