Array operator: Union (+)


SUBMITTED BY: henry1874w

DATE: June 12, 2017, 4:02 p.m.

FORMAT: Text only

SIZE: 201 Bytes

HITS: 214

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $x = array("a" => "red", "b" => "green");
  6. $y = array("c" => "blue", "d" => "yellow");
  7. print_r($x + $y); // union of $x and $y
  8. ?>
  9. </body>
  10. </html>

comments powered by Disqus