最小字符长度,strlen?

时间:2009-06-29 18:38:55

标签: php syntax

if (strlen($comment > 2)) {

好的,所以如果$ comment包含2个以上的字符,我只想执行此操作 我相信strlen应该这样做,但事实并非如此。我使用它错了吗?

4 个答案:

答案 0 :(得分:8)

您的右括号位于错误的位置:

if (strlen($comment) > 2) {

}

答案 1 :(得分:2)

我不知道php。 但也许你应该尝试

if (strlen($comment) > 2) {

答案 2 :(得分:1)

应该是:

if (strlen( $comment ) > 2 ) {

答案 3 :(得分:0)

应该是:

if ( strlen($comment) > 2 ) {

您可能还想修剪()注释,以确保它是两个以上的非空白字符:

if ( strlen(trim($comment)) > 2 ) {