$string = '540';

if (strlen ($string >= 34)){
    print_r((substr($string, 0, 30) . "..."));
} else {
    print_r(($string));
}

If $string is longer than 34 characters it should be appended with a "...", otherwise it should just print the string.

I think what's happening is that the interpreter is assuming the string is a number when it does the comparison.

It also has the same hiccup if I change $string to

$string = '540 rocks !'

Why is this?

link|improve this question

3  
What made you think that > compares the number of digits??? – Kerrek SB Nov 12 '11 at 19:10
1  
Also, you don't ever need double parentheses, so change your print_r(($string)) to print_r($string). – minitech Nov 12 '11 at 19:13
My bad. . . I was rushing, didn't notice the parentheses – TuK Nov 12 '11 at 19:15
feedback

2 Answers

up vote 2 down vote accepted

Should be:

if (strlen($string) >= 34)) {

Not

if ($string >= 34)){
link|improve this answer
feedback

If the test you want to do is on the string length, just change this line:

if ($string >= 34)){

into this:

if (strlen($string) >= 34)){
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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