Advertisement
UniQuet0p1

ex5

Oct 2nd, 2021
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. <?php
  2.  
  3. $numbers = [3, 2, 5, 6];
  4.  
  5.  
  6. $joined = join(",", $numbers);
  7.  
  8. print $joined;
  9.  
  10. print_r(explode(",", $joined));
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement