Advertisement
Guest User

Untitled

a guest
Jun 25th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. $value1 = array ("10" => "car", "20" => "home", "30" => "ball");
  2. $value2 = array ("50" => "car", "60" => "home", "70" => "ball");
  3. $value3 = array ("100" => "car", "110" => "home", "120" => "ball");
  4.  
  5. $endvalue = $value1 + $value2 + $value3;
  6.  
  7. print_r ($endvalue);
  8.  
  9. "160" => "car"
  10. "190" => "home"
  11. "220" => "ball"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement