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.

How can I remove 3 characters at the end of a string in php? "abcabcabc" would become "abcabc"!

share|improve this question
php.net/manual/en/ref.strings.php: A combination of substr() and strlen() will work. – Pekka 웃 Feb 6 '11 at 20:06
@Pekka I see that you're on SO way longer than I am, so I was wondering if there is a reason to not post this as an answer. – Reiner Gerecke Feb 6 '11 at 20:11
@Reiner just laziness: Looking up the correct manual links, and providing some code (and giving it a quick test before posting) is a lot of work :) No other reason than that. – Pekka 웃 Feb 6 '11 at 20:13

3 Answers

up vote 22 down vote accepted

echo substr($string, 0, -3);

"If length is given and is negative, then that many characters will be omitted from the end of string"

is more clear, for more tricks look at http://us2.php.net/manual/en/function.substr.php

share|improve this answer
Wow I didn't know this - great to find out. – Kaltas Feb 6 '11 at 21:12
2  
Ooo yes - reading documentation is very beneficial :) for PHP www.php.net is the one – bensiu Feb 6 '11 at 23:05

<?php echo substr("abcabcabc", 0, -3); ?>

share|improve this answer
<?php echo substr($string, 0, strlen($string) - 3); ?>
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.