$ mydata内のすべての画像に「rel」属性がない場合、解決策は簡単です
$mydata = str_replace('<img ', '<img rel="lightbox"', $mydata);
その他の場合、「>」文字が属性値に表示されない場合にのみ、このコードは機能します
function rel_adder( $matches ) {
if ( strpos($matches[0], 'rel=') === false ) {
return $matches[1].'rel="lightbox" '. $matches[2];
} else {
return $matches[0];
}
}
$mydata = preg_replace_callback('#(<img )([^>]+)>#i', "rel_adder", $mydata);