dpcyx08288 2014-10-15 04:31
浏览 53
已采纳

数组到字符串转换DOM解析器

I'm trying to grab the Nth instance of an element using a DOM parser, in this case the first DIV CLASS element and only echo that. I'm getting an error Notice: "Array to string conversion". I've tried using the implode function to join it and make it a string but nothing seems to be working. What am I doing wrong? found the functions here http://code.tutsplus.com/tutorials/html-parsing-and-screen-scraping-with-the-simple-html-dom-library--net-11856 but cant get the same result.

function my_function($str) {
    require_once 'libs/simple_html_dom.php';
    $html = file_get_html($str);
    foreach($html->find('div[class=copy]', 0) as $element){
        $patterns = array();
        $patterns[0] = 'some';
        $patterns[1] = 'cool';
        $replacements = array();
        $replacements[0] = 'really';
        $replacements[1] = 'super';
        $replacements[3] = ' ';ksort($patterns);ksort($replacements);
        echo str_replace($patterns, $replacements, $element);
    }
}

the issue is somewhere here

foreach($html->find('div[class=copy]', 0) as $element)

markup

<div class="copy">somecooltext1</div>
<div class="copy">somecooltext2</div>
<div class="copy">somecooltext3</div>
<div class="copy">somecooltext4</div>
<div class="copy">somecooltext5</div>

I'm trying to capture only the 1st instance and echo it.

  • 写回答

1条回答 默认 最新

  • dongpo2014 2014-10-15 04:46
    关注

    ok I figured it out

    changed

    foreach($html->find('div[class=copy]', 0) as $element)
    

    to

    $element = $html->find('div[class=copy]', 0);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?
  • ¥15 关于#vue.js#的问题:修改用户信息功能图片无法回显,数据库中只存了一张图片(相关搜索:字符串)
  • ¥15 texstudio的问题,