fork download
  1. <?php
  2.  
  3. $followArry1 = array('a', 'b', 'c');
  4. $mem = 'd';
  5.  
  6. $result = implode(',', $followArry1 + array($mem));
  7.  
  8. var_dump($result);
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
string(5) "a,b,c"