Почему моя правильно определенная переменная не оценивает длину правильно (и впоследствии работает в остальной части моего кода)? - PullRequest
0 голосов
/ 19 ноября 2011

Я использовал ответ, предложенный Марком Б., и все еще ничего не получил в переменной, когда повторил его после цикла while, поэтому я добавил несколько проверок, чтобы показать состояние вещей, когда они обрабатывались в коде.Когда оператор if / else выполняется следующим, он показывает результат, в котором есть длина переменной.Следующий оператор if / else ветвится на оператор else, а затем принимает оператор else в следующем if / else, говоря, что xpath ничего не нашел.Так что, очевидно, когда я использую переменную $ BEmp3s, в ней ничего нет.

Это не имеет особого смысла для меня, так как в начале эхо $ BEpost_content показывает правильное содержимое в полном объеме.но оценка по его длине ничего не показывает / NULL?Пожалуйста, помогите!

<?php
    // Start MP3 URL
    $doc   = new DOMDocument();
    $doc->strictErrorChecking = FALSE;

    $xpath = new DOMXpath($doc);
    // End MP3 URL

    $a = 1;
    if (have_posts()) :
        while ( have_posts() ) : the_post();
?>
<?php
$BEpost_content = get_the_content();
if (strlen($BEpost_content) > 0) {
    echo "<div id='debug_content'>get_the_content has something</div>";
} else {
    echo "<div id='debug_content'>BEpost_content is empty</div>" ;
};
$success = $doc->loadHTML($BEpost_content);
if ($success === FALSE) {
    echo "<div id='debug_loadcontent'>loadHTML failed to load post content</div>";
} else {
    $hrefs = $xpath->query("//a[contains(@href,'mp3')]/@href");
    if ($hrefs->length > 0) {
        echo "<div id='debug_xpath'>xpath found something</div>";
    } else {
        echo "<div id='debug_xpath'>xpath found nothing</div>";
    };
    $BEmp3s = $hrefs->item(0);
};
?>

Вот функция get_the_content (), которая возвращает строку, насколько мне известно:

function get_the_content($more_link_text = null, $stripteaser = 0) {
global $post, $more, $page, $pages, $multipage, $preview;

if ( null === $more_link_text )
    $more_link_text = __( '(more...)' );

$output = '';
$hasTeaser = false;

// If post password required and it doesn't match the cookie.
if ( post_password_required($post) ) {
    $output = get_the_password_form();
    return $output;
}

if ( $page > count($pages) ) // if the requested page doesn't exist
    $page = count($pages); // give them the highest numbered page that DOES exist

$content = $pages[$page-1];
if ( preg_match('/<!--more(.*?)?-->/', $content, $matches) ) {
    $content = explode($matches[0], $content, 2);
    if ( !empty($matches[1]) && !empty($more_link_text) )
        $more_link_text = strip_tags(wp_kses_no_null(trim($matches[1])));

    $hasTeaser = true;
} else {
    $content = array($content);
}
if ( (false !== strpos($post->post_content, '<!--noteaser-->') && ((!$multipage) || ($page==1))) )
    $stripteaser = 1;
$teaser = $content[0];
if ( ($more) && ($stripteaser) && ($hasTeaser) )
    $teaser = '';
$output .= $teaser;
if ( count($content) > 1 ) {
    if ( $more ) {
        $output .= '<span id="more-' . $post->ID . '"></span>' . $content[1];
    } else {
        if ( ! empty($more_link_text) )
            $output .= apply_filters( 'the_content_more_link', ' <a href="' . get_permalink() . "#more-{$post->ID}\" class=\"more-link\">$more_link_text</a>", $more_link_text );
        $output = force_balance_tags($output);
    }

}
if ( $preview ) // preview fix for javascript bug with foreign languages
    $output =   preg_replace_callback('/\%u([0-9A-F]{4})/', '_convert_urlencoded_to_entities', $output);

return $output;

}

1 Ответ

1 голос
/ 19 ноября 2011

Ваш предыдущий вопрос сказал вам, чтобы проверить длину hrefs, чтобы увидеть, есть ли в нем содержание. Это правильно, потому что hrefs - это массив. Он имеет длину и поддерживает свойство длины. get_the_content() возвращает строку (см. документы ).

Для проверки длины строки используйте strlen

Чтобы проверить, имеет ли значение null is_null

Чтобы проверить, установлен ли набор, используйте isset

Разница между isset и is_null

Обновление

Вы спросили, почему ваш код неправильно разветвляется в следующей строке:

$hrefs = $xpath->query("//a[contains(@href,'mp3')]/@href");

Вы также говорите, что $xpath определено далее в коде. Однако вы переопределяете $doc, так почему бы в $xpath были правильные значения?

$success = $doc->loadHTML($BEpost_content);  //you change $doc here!
$xpath = new DOMXpath($doc);  //so perhaps you should load it into xpath here?
$hrefs = $xpath->query("//a[contains(@href,'mp3')]/@href"); //don't know what this query does. maybe it is broken.
...