<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=gb2321" />
<title>项目研究 </title>
<META content="MSHTML 6.00.2900.3354" name=GENERATOR></META>
<style type="text/css">
#brandDiv{width:289pxheight:40px}
#brandDiv img{width:100%height:100%}
</style>
</head>
<body>
<div id="brandDiv"><img src="../webImages/used/top_logo.gif"/>
<!----如何在此处将一个img加入,使img的大小与DIV的大小一样,img的位置与DIV的位置一致?---->
</div>
</body>
</html>
$htmlcode= 'gdgfgsdfg<img src="imge.jpg">fsafasfd<img src="imge2.jpg">fsafasfd'$preg = "/<img src=\"(.+?)\">/"
preg_match_all($preg,$htmlcode,$matches)
for ($i=0$i<count($matches[0])$i++) {
$htmlcode = str_replace($matches[0][$i],"<div>".$matches[0][$i]."</div>",$htmlcode)
}
echo htmlspecialchars($htmlcode)
htmlspecialchars方法是在php中把html标签当成字符串显示
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)