gpt4 book ai didi

php - 当值在 php 中较大时,隐藏的输入类型不会隐藏在表单中

转载 作者:行者123 更新时间:2023-11-28 03:04:45 25 4
gpt4 key购买 nike

我正在尝试将隐藏的输入字段值设置为从数组中获取的 xml 字符串。但是 hidden 字段值显示在 html 中,而当我将普通文本作为隐藏字段中的值时,它工作正常。

//a large sized associative array convert to xml and set as hidden field 
$item_array=array();
$xml=new SimpleXMLElement('<OriginDestinationOption/>');
array_walk_recursive($item_array,array($xml,'addChild'));
echo '<input type="hidden" name="return-xml" value="'.$xml->asXML();.'" />'; ?>

但它以 html 形式显示值。我的代码有什么问题?

注意:我使用的是codeigniter framewrok

最佳答案

试试这个

 echo '<input type="hidden" style="display:none;" name="return-xml" value="'.str_replace('"',"'",$xml->asXML());.'" />'; ?>

关于php - 当值在 php 中较大时,隐藏的输入类型不会隐藏在表单中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33141134/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com