在字符串中strpos empty / blank子字符串

时间:2014-11-12 15:22:24

标签: php wordpress strpos

我有一个字符串试图在API调用中查找特定资源。

资源水平:本科,研究生,独立学术工作,"" (据说这意味着没有/未分配)。

那么,在尝试查找"" 级别时,只需使用strpos($level, "") !== false即可?

我已经设置了这样,但是没有呈现任何"" 级别的课程:

$section = $course->{'SectionName'};
$level = $course->{'Level'};
$parent = the_parent_title();
                if($section === '01' && (
                        strpos($level, $parent) !== false 
                    ||  strpos($level, "") !== false
                    ||  strpos($level, 'Independent Academic Work') !== false
                        )
                        )

任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:1)

两个双引号表示空字符串。

使用php的empty()功能。

if (empty($level)) {
    //....

或使用字符串比较:

if ($level === "") {
    //...