Horje

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 ;
?>




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