fork download
  1. <?php
  2.  
  3. $gg = array(
  4. '44557799',
  5. '72728888',
  6. );
  7.  
  8. $gg[] = "12345678";
  9.  
  10. var_dump($gg);
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
array(3) {
  [0]=>
  string(8) "44557799"
  [1]=>
  string(8) "72728888"
  [2]=>
  string(8) "12345678"
}