检查 Laravel 视图中的空字符串和空字符串
2022-08-30 20:24:47
在我看来,我必须分别输出一个和那个null
empty string
所以我有这个:
@if( $str->a == null)
... // do somethin
@endif
@if( $str->a == '')
... // do somethin
@endif
问题是它们的结果相同。
谢谢
在我看来,我必须分别输出一个和那个null
empty string
所以我有这个:
@if( $str->a == null)
... // do somethin
@endif
@if( $str->a == '')
... // do somethin
@endif
问题是它们的结果相同。
谢谢
@if( !empty($str->a))
... // do somethin
@endif
这被认为是空的
以下内容被视为空:
"" (an empty string)
0 (0 as an integer)
0.0 (0 as a float)
"0" (0 as a string)
NULL
FALSE
array() (an empty array)
$var; (a variable declared, but without a value)