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

)
Array
(
    [0] => 1604
)