fork download
  1. <?php
  2.  
  3. $text ="кот собака есть мышь";
  4. $example = explode(" ", $text);
  5. print_r($example);
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
Array
(
    [0] => кот
    [1] => собака
    [2] => есть
    [3] => мышь
)