Guest User

Untitled

a guest
May 29th, 2017
1,249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2. $fruits = array('Apple','Banana','Mango');
  3. $fruits1 = array('Orange','Dragonfruit','Grape');
  4. array_push($fruits,$fruits1);
  5. print_r($fruits); exit();
  6. ?>
  7.  
  8. #HASIL RUNNING
  9. Array (
  10. [0] => Apple
  11. [1] => Banana
  12. [2] => Mango
  13. [3] => Array (
  14. [0] => Orange
  15. [1] => Dragonfruit
  16. [2] => Grape
  17. )
  18. )
Advertisement
Add Comment
Please, Sign In to add comment