$content として設定されたデータの文字列があります。このデータの例は次のとおりです。
This is some sample data which is going to contain an image in the format <img src="http://www.randomdomain.com/randomfolder/randomimagename.jpg">. It will also contain lots of other text and maybe another image or two.
<img src="http://www.randomdomain.com/randomfolder/randomimagename.jpg">
$extracted_image などの別の文字列だけを取得して保存しようとしています
私はこれまでのところ....
if( preg_match_all( '/<img[^>]+src\s*=\s*["\']?([^"\' ]+)[^>]*>/', $content, $extracted_image ) ) {
$new_content .= 'NEW CONTENT IS '.$extracted_image.'';
戻ってくるのは...
NEW CONTENT IS Array
私の試みはおそらく完全に間違っていると思いますが、どこが間違っているのか誰か教えてもらえますか?