- implode: documentation ( source)
- explode: documentation ( source)
- array_filter: documentation ( source)
<?php
$word = "01 2 3 4 5 6 7 8 9 0";
$nums = explode(' ', $word);
$nums = array_filter($nums);
$word = implode(' ', $nums);
echo $word;