php-检查字符串是否包含任何文本
作者:互联网
我有这个字符串:
$mystring = "SIZE,DETAIL";
我正在使用:
@if (strpos($mystring, 'SIZE'))
{{ $item->size }}
@endif
@if (strpos($mystring, 'DETAIL'))
{{ $item->detail }}
@endif
但这适用于SIZE,但不适用于DETAIL.
这里有什么问题?
解决方法:
此函数可以返回布尔FALSE,但也可以返回非布尔值,其值为FALSE.
尝试这个:
@if (strpos($mystring, 'SIZE') !== false)
{{ $item->size }}
@endif
@if (strpos($mystring, 'DETAIL') !== false)
{{ $item->detail }}
@endif
参考:http://php.net/manual/en/function.strpos.php
标签:laravel,laravel-5-2,php,laravel-5-3 来源: https://codeday.me/bug/20191026/1935782.html