我正在尝试处理可能输入的字符串
'something <p>hi</p> <br />'
输入字符串可以包含任何 HTML 标记,也可以不包含任何 HTML 标记。我想处理这个字符串而不格式化它。
本质上,我现在正在拆分它,使用 & 分隔符,并且我需要生成的输出数组仍然包含输入
ETC....$ajaxinput = "function=submit&content=this is some page stuff <p>hi</p>";
echo 'Input : ' . $ajaxinput . '<br /><br /><br />';
$output = explode("&", $ajaxinput);
echo 'Split : ' . $output[0] . '<br /><br />';
echo 'Split : ' . $output[1];
输出是:
Input : function=submit&content=this is some page stuff
hi
Split : function=submit
Split : content=this is some page stuff
hi
我想:
Input : function=submit&content=this is some page stuff <p>hi</p>
Split : function=submit
Split : content=this is some page stuff <p>hi</p>