PHP if ifadesi strlen ile (beklendiği gibi çalışmıyor)

0 Cevap
<?php if(strlen($r['body'] <= '74')): ?>
<?php echo $r['body']; ?>
<?php else: ?>
<?php echo substr($r['body'], 0, 74) ."..."; ?>
<?php endif; ?>

when $r['body'] == more than 74 chars everything works as expected but as soon as $r['body'] == less than 74 chars it still attaches "..."

Ben yanlış yapıyor ne çalışabilir?

0 Cevap