Re: PHP Tokenize a String by its length



Message-ID: <sSttf.3225$gq4.1485@trndny04> from Lüpher Cypher contained
the following:

>Actually, it's needed :)
>Suppose $string = "aaa bbb ccc" and $length = 9, then:
>first substr leaves "aaa bbb "
>if we don't have the second trim, strrpos returns 8 and second substr
>returns "aaa bbb " so, "aaa bbb ..." will be returned instead of "aaa
>bbb..." :)

Think again.

strrpos returns 7

;-)

--
Geoff Berrow (put thecat out to email)
It's only Usenet, no one dies.
My opinions, not the committee's, mine.
Simple RFDs http://www.ckdog.co.uk/rfdmaker/
.



Relevant Pages

  • Re: PHP Tokenize a String by its length
    ... Geoff Berrow wrote: ... first substr leaves "aaa bbb " ... if we don't have the second trim, strrpos returns 8 and second substr ... it'll become "aaa bbb" and strrpos will ...
    (comp.lang.php)
  • Re: PHP Tokenize a String by its length
    ... Geoff Berrow wrote: ... first substr leaves "aaa bbb " ... if we don't have the second trim, strrpos returns 8 and second substr ...
    (comp.lang.php)