将&符号(&)解码为正常

时间:2015-07-15 08:46:32

标签: php html

我在创建添加文件表单时遇到问题,如果有人想要,它会在提交后重定向以添加新文件,但是当我尝试这样做时,它仍会重定向回m =文件,因为它显示?m=files&a=addedit。我尝试使用html_entity_decode,但仍显示相同的?m=files&a=addedit该怎么做,这是我的重定向?

<input type="hidden" name="redirect" value="<?php echo $new = html_entity_decode('m=files&amp;a=addedit'); ?>" />

1 个答案:

答案 0 :(得分:1)

我认为不是100%确定OP想要什么,而只是用&amp替换&可以解决问题。

<input type="hidden" name="redirect" value="<?php echo str_replace('&amp;', '&', 'm=files&amp;a=addedit'); ?>" />