Contact: aviboots(AT)netvision.net.il
38,169 questions
49,785 answers
573 users
$string = "php"; $result = strlen($string ? $string : "") > 2 ? "yes" : "no"; echo $result; /* run: yes */
$string = ""; $result = strlen($string ? $string : "") > 2 ? "yes" : "no"; echo $result; /* run: no */
$string = null; $result = strlen($string ? $string : "") > 2 ? "yes" : "no"; echo $result; /* run: no */