cakephp condition string length > 0

PHP
<?php
$str = 'abcdef';
echo strlen($str); // 6

$str = ' ab cd ';
echo strlen($str); // 7
?>

Use the PHP strlen() function
Source

Also in PHP: