Puedes probar este código
<?php
$s = 'This is #important# and needs to elaborated further. Remember to buy #milk before coming home#';
for($i=0;$i<strlen($s);$i++)
if($s[$i] == "#") {
$i++;
$str="";
while($s[$i]!='#') {
echo $s[$i];
$i++;
}
echo '<br>';
};
?>
entonces obtendrás tu resultado
importante
leche antes de volver a casa