आप इस कोड को आजमा सकते हैं
<?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>';
};
?>
तब आपको अपना परिणाम मिल जाएगा
महत्वपूर्ण
घर आने से पहले दूध