fork download
  1. <?php
  2. $a = ['a', 'b', 'c'];
  3.  
  4. implode($a); //Выведет строку, но никуда ее не присвоит
  5.  
  6. echo "\n\n";
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
array(3) {
  [0]=>
  string(1) "a"
  [1]=>
  string(1) "b"
  [2]=>
  string(1) "c"
}


string(3) "abc"