How to get some part of string php? -


my string 1/2/3/33/34.

now want 3/33/34 part,

i getting many string in string 1/2/ common n want string after 1/2/ string

echo substr('1/2/3/33/34',4); 

that takes out 1/2/ (first 4 letters of string)

fiddle


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -