php - How to insert a character inside a string -
$string=apple $add=£ $new=app£le i facing problem inserting character in string.
$string='apple'; $add='£'; $new=substr_replace($string,$add,3,0); echo $new; $string=apple $add=£ $new=app£le i facing problem inserting character in string.
$string='apple'; $add='£'; $new=substr_replace($string,$add,3,0); echo $new;
Comments
Post a Comment