Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

hey, how can i remove the first 4 characters of a string in php.

Thanks

share|improve this question

2 Answers

up vote 37 down vote accepted

You could use the substr function to return a substring starting from the 5th character:

$str = "The quick brown fox jumps over the lazy dog."
$str2 = substr($str, 4); // "quick brown fox jumps over the lazy dog."
share|improve this answer
11  
(trivia) The quick brown fox jumps over the lazy dog is a Pangram. – Gordon Nov 26 '10 at 15:23
4  
@Gordon No longer after substr :D – totymedli Dec 26 '12 at 1:28

If you’re using a multi-byte character encoding and do not just want to remove the first four bytes like substr does, use the multi-byte counterpart mb_substr. This does of course will also work with single-byte strings.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.