0

私は simple_html_dom を使用して、CMS 駆動の画像をページに埋め込む方法を管理しています。ただし、アンカータグでまだラップされていない画像を新しいアンカータグでラップできるようにしたいのですが、 simple_html_dom 要素を新しいタグでラップする方法がわかりません。

これまでの私のコード:

$content = str_get_html($content);
if(is_object($content))
{
    $elements = $content->find('img');
    foreach($elements as $element)
    {
/*
GET INFORMATION ABOUT WHAT IMAGE THIS IS - ALL FINE
*/          
$classStr = $element->class;
        if(trim(strlen($classStr)) > 0)
        {
            $needle = "wp-image-";
            $after = substr($classStr, strpos($classStr, $needle) + strlen($needle));
            if(strpos($after, " "))
            {
                $imageID = substr($after, 0, strpos($after, " "));
            }
            else
            {
                $imageID = $after;
            }   
/*
Get new image to link to
*/
$image = tona_get_image_by_id($imageID, "full");

/*
CHECK IF PARENT OF IMAGE IS AN ANCHOR... IF SO CHANGE THE LINK
*/

            $elementParent = $element->parent();
            if(isset($elementParent->href)) 
            {
                $elementParent->href = $image["src"];
                $elementParent->class .= " newAnchorClass ";    
            }
/*
IF NOT ADD A NEW ANCHOR TAG ** HELP **
*/

            echo "IMG: " . $imageID . " " . $image["src"] . "<br/>";    
            $element->href = $image["src"];
        }
    }
}

よろしくお願いします。

4

1 に答える 1

1

「ヒント」タブのドキュメントから:
$e->outertext = '<div class="wrap">' . $e->outertext . '<div>'

要素をさらに操作したい場合は、一時変数を使用して dom を再作成できます。あなたの場合、それは次のようになります。

// '$element' is the element to be wrapped
$tempHtml = str_get_html('<a>' . $element->outertext . '</a>');
$link = $tempHtml->find('a', 0);
// '$src' is the url of the link
$link->href = $image['src'];
于 2012-12-19T06:17:07.877 に答える