I need to delete the first 3 letters of a string and the last 3 letters of a string. I know I can use substr() to start at a certain character but if I need to strip both fi
I don't know php, but can't you take the length of the string, start as position 3 and take length-6 characters using substr?