私は 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"];
}
}
}
よろしくお願いします。