Horje
How to remove first character from string php

The substr() function will probably help you here:


How to delete first character from string php

See below Example.
index.php
Example: PHP
<?php
$str = 'We love Cricket';
$str = substr($str, 1);
echo $str ;
?>





Category :
Web Tutorial
Sub Category :
PHP String Tutorial
Uploaded by :
Admin