fork download
  1. <?php
  2.  
  3. $string = "127.0.0.1:8000 127.0.0.1:81 127.0.0.1:77 127.0.0.1:66";
  4. print_r(explode(' ', $string));
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 127.0.0.1:8000
    [1] => 127.0.0.1:81
    [2] => 127.0.0.1:77
    [3] => 127.0.0.1:66
)