Remove First Character Script

Remove First Character Script used to removing characters from the first of a string.

Demo :



Type Text : Type No: +

Example :

Type Text : Removing Characters Start String.

Type Number : 7

If you need to Removing Characters Start String function following code useful to you.


<?php
  $stringStart = "Removing Characters Start String";
  $result = substr($stringStart,7);
  echo $result;
?>

In the above code is used to removing characters from the start of a string. The 'Removing Characters start String' this string stored in $stringStart variable.Then substr() function will remove first 7 character. which function have three arguments that is string str,int star,[int length].

Free Download Script :

If you need to remove first character script click and download from following link.

Download




Content