fork download
  1. <?php
  2.  
  3. $a = array('firstname' => 'Tom');
  4. $b = array('lastname' => 'Sawyer');
  5. $c = array('age' => 20);
  6.  
  7. $result = "$a + $b + $c";
  8.  
  9. var_dump($result);
Success #stdin #stdout #stderr 0.02s 24448KB
stdin
Standard input is empty
stdout
string(21) "Array + Array + Array"
stderr
PHP Notice:  Array to string conversion in /home/yXqls6/prog.php on line 7
PHP Notice:  Array to string conversion in /home/yXqls6/prog.php on line 7
PHP Notice:  Array to string conversion in /home/yXqls6/prog.php on line 7