$str=':this is a applepie :) ';
How to use php, remove the first character : with php?
|
|
The
Strings are indexed starting from 0, and this functions second parameter takes the cutstart. So make that 1, and the first char is gone. |
|||
|
|
Or for any char, if the data is trimmed and has no spaces at the left, unset($str[0]) Quick, simple and painless. |
|||
|
|
|
Trims occurrences of every word in an array from the beginning and end of a string + whitespace and optionally extra single characters as per normal trim()
|
||||
|
|