fork download
  1. <?php
  2.  
  3. $strok[1][] = "1 604";
  4. print_r($strok);
  5.  
  6. $str = str_replace(' ' ,'', $strok[1]);
  7. print_r($str);
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Array
(
    [1] => Array
        (
            [0] => 1 604
        )

)
Array
(
    [0] => 1604
)