Guest User

Untitled

a guest
Feb 19th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. <?php
  2. $a = array('test');
  3. $b = array('bar');
  4. print_r(array_merge($a,$b));
  5.  
  6.  
  7. ---
  8.  
  9.  
  10. php test.php
  11. Array
  12. (
  13. [0] => test
  14. [1] => bar
  15. )
Add Comment
Please, Sign In to add comment