在PHP中剪切字符串

时间:2013-11-12 04:23:00

标签: php string

我想要的是在PHP中使用变量字符串:

 $Vstr =<img alt="" src="x.jpg" usemap="#xxx" /><map id="raster1" name="xxx">
    <area shape="rectangle" coords="53,50,355,181" /></map>

最终结果应为:

<map id="raster1" name="xxx">
<area shape="rectangle" coords="53,50,355,181" /></map>

我尝试使用explode()但不工作 请你帮助我好吗? 提前谢谢你!

1 个答案:

答案 0 :(得分:1)

你可以像以下一样爆炸:

<?php

$Vstr = '<img alt="" src="x.jpg" usemap="#xxx" /><map id="raster1" name="xxx">
    <area shape="rectangle" coords="53,50,355,181" /></map>';

$do = explode("/>",$Vstr,2);

echo $do[1];

?>

对以下评论的回应:

这是因为您的浏览器将输出呈现为html。您可以通过在浏览器中查看html源来查看它。

使用

echo htmlentities($do[1]);

将内容类型设置为text/plain