只返回1个结果,我怎么能全部返回?

时间:2018-09-11 00:57:31

标签: php

我目前正在构建一个 simple_html_dom.php 脚本,并且我试图解析所有数据并将其存储为一个字符串,以便可以将数据提交到我的WordPress网站中,这就是我拥有的到目前为止。

$test = $html->find('.post img', 0);
$src = $test->plaintext;

if (strpos($src, '/wp-content/uploads/20') !== false) {
    print '<br>';
    $premade = '<img src="'.$src.'" class="data-m" />';
    print htmlspecialchars($premade);
}

$my_post = array(
    'post_title'    => wp_strip_all_tags( trim( $uej ) ),
    'post_status'   => 'publish',
    'post_author'   => 1,
    'post_content' => $premade,
    'post_category' => array(6),
    'post_date' => date('Y-m-d H:i:s')
);

当我将其打印出来时,它仅返回一个结果,我如何才能将其转换为一个字符串?

0 个答案:

没有答案