Home > Backend Development > PHP Tutorial > 界别文本中的文字与图片

界别文本中的文字与图片

WBOY
Release: 2016-06-13 12:13:52
Original
1129 people have browsed it

区分文本中的文字与图片
有段文本如下,我想用php把其中的文字部分弄出来赋值给一个变量,图片描述的部分再区分出来赋值给一个变量,用程序怎么实现?

物品尺寸/规格:高24厘米,,好东西值得收藏。

界别文本中的文字与图片 700? 700: true);" title="1.jpg"/>

界别文本中的文字与图片 700? 700: true);" title="2.jpg"/>

界别文本中的文字与图片 700? 700: true);" title="3.jpg"/>



------解决思路----------------------
图片描述的部分 是指各个title吗?那就有多个哦。
------解决思路----------------------
$str1是文字描述
$str2是图片描述

<br />$content=<<<TXT<br /><p>物品尺寸/规格:高24厘米,,好东西值得收藏。</p><p><img  src="/ueditor/php/../../data/attachment/antique//20141123/14167157082579.jpg"   style="max-width:90%"界别文本中的文字与图片" > 700? 700: true);" title="1.jpg"/></p><p><img  src="/ueditor/php/../../data/attachment/antique//20141123/14167157109272.jpg"   style="max-width:90%"界别文本中的文字与图片" > 700? 700: true);" title="2.jpg"/></p><p><img  src="/ueditor/php/../../data/attachment/antique//20141123/14167157112075.jpg"   style="max-width:90%"界别文本中的文字与图片" > 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 />
Copy after login

------解决思路----------------------
<br />$s='<p>物品尺寸/规格:高24厘米,,好东西值得收藏。</p><p><img  src="/ueditor/php/../../data/attachment/antique//20141123/14167157082579.jpg"   style="max-width:90%"界别文本中的文字与图片" > 700? 700: true);" title="1.jpg"/></p><p><img  src="/ueditor/php/../../data/attachment/antique//20141123/14167157109272.jpg"   style="max-width:90%"界别文本中的文字与图片" > 700? 700: true);" title="2.jpg"/></p><p><img  src="/ueditor/php/../../data/attachment/antique//20141123/14167157112075.jpg"   style="max-width:90%"界别文本中的文字与图片" > 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 />
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template