how to remove numbr from the beginning of string in php
if you want to remove all number form the beginning of string in php then i hope this is ver help full to you example.
if you have in question please feel free for ask me in comment box are email
$string = "239 the is testing string"
$str = ltrim($string, '0123456789');
var_dump($str);
Comments
Post a Comment