如何在simpleHTMLDom中添加body标签中的属性

时间:2013-09-03 17:51:37

标签: php curl simple-html-dom

好的,所以这是我要在我的代码段中修改的标签:

  <body style="; width: 100%;" class="portrait" data-promo-button="">

我不想改变它的innerHTML,但它是style属性。我想在style属性中添加以下内容:

  background-color:black;

它是整个代码段中唯一的正文标记。我使用simpleHTMLDom来获取包含body标签的内容:

  function game_login($link)
  {
       global $options;
       $ch=curl_init($link);
       curl_setopt_array($ch, $options);
       $content=curl_exec($ch);
       echo $content;
  }

我要编辑的正文标记存储在$content变量

提前致谢

1 个答案:

答案 0 :(得分:1)

$string ='    <body style="; width: 100%;" class="portrait" data-promo-button=""> </body>';
    $html = str_get_html($string);
    $html->find('body', 0)->style .= 'background-color:black;';
    echo $html;