Remove First N Characters from String using PHP July 6, 2021 PHP 0 Comments 304 Views substr function <?php $text = 'HelloWorld!'; $n = 5; $result = substr($text, $n); echo $result; // World!
Leave a Comment
Cancel reply