Remove the very first character of a given string in PHP
Examples:
Input : software info tech Output : software info tech Input :, Hello infotech! Output : Hello infotech!
<?php
$str = "info tech solutions";
// Or we can write ltrim($str, $str[0]);
$str = ltrim($str, 'i');
echo $str;
?>