本文中の文字と絵を区別する
以下のような文章があり、PHPを使って文字部分を抽出して変数に代入し、さらに絵の説明部分を区別して代入したいと考えています。プログラムでこれを実現するにはどうすればよいでしょうか?
商品サイズ/仕様:高さ24cm、良いものは集める価値があります。
<br />$content=<<<TXT<br /><p>物品尺寸/规格:高24厘米,,好东西值得收藏。</p><p><img src="/ueditor/php/../../data/attachment/antique//20141123/14167157082579.jpg" style="max-width:700px;width:expression(this.width > 700? 700: true);" title="1.jpg"/></p><p><img src="/ueditor/php/../../data/attachment/antique//20141123/14167157109272.jpg" style="max-width:700px;width:expression(this.width > 700? 700: true);" title="2.jpg"/></p><p><img src="/ueditor/php/../../data/attachment/antique//20141123/14167157112075.jpg" style="max-width:700px;width:expression(this.width > 700? 700: true);" title="3.jpg"/></p><p><br/></p><br />TXT;<br /><br />$data = explode('</p><p>', $content);<br />$str1 = $data[0].'</p>';<br />unset($data[0]);<br />$str2 = '<p>'.implode('</p><p>', $data);<br /><br />echo $str1;<br />echo $str2';<br />
<br />$s='<p>物品尺寸/规格:高24厘米,,好东西值得收藏。</p><p><img src="/ueditor/php/../../data/attachment/antique//20141123/14167157082579.jpg" style="max-width:700px;width:expression(this.width > 700? 700: true);" title="1.jpg"/></p><p><img src="/ueditor/php/../../data/attachment/antique//20141123/14167157109272.jpg" style="max-width:700px;width:expression(this.width > 700? 700: true);" title="2.jpg"/></p><p><img src="/ueditor/php/../../data/attachment/antique//20141123/14167157112075.jpg" style="max-width:700px;width:expression(this.width > 700? 700: true);" title="3.jpg"/></p><p><br/></p>';<br />preg_match_all('/[\x7f-\xff]+/',$s,$a);<br />$s1=implode('',$a[0]);<br />preg_match_all('/title="(.*?)"/',$s,$b);<br />echo $s1; //文字部分<br />print_r($b[1]); //图片描述<br />