使用隐藏的输入发送php $ Array

时间:2014-09-30 06:14:35

标签: php html

我在php中将一个数组的值从php文件发送到另一个,我使用的是一个隐藏有seriaize的输入,它工作正常,但我在一个网页上读到,当数组没有时,我可以使用序列化很多值只是当它有一些值,我不知道,例如数组[10]或[8],我使用这个数组来保存很多值,如40或更多,我想制作确保serialize()能正常工作,你怎么看?,我可以在数组中使用序列化很多值吗?

我的代码在这里:

////file1.php////

//here both $code_period and $selection are array, and i dont know exactly how many values i will
//save inside them   

echo "<form name='formprocess' method='post' action='process.php'>

<input name='code_period_name' type='hidden' value='".serialize($code_period)."'>
<input name='selection' type='hidden' value='".serialize($selection)."'>

<input style='background:#13284B;color:White' type='submit' value='Process'>

</form>";



////process.php////

$code_period_name=unserialize($_POST['code_period_name']); //im catching these values this way
$selection=unserialize($_POST['selection']);

就像我之前说过的,它工作得很好我只想知道你对此的看法,因为我在网页上看到我可以使用序列化,当我必须保存一些值

2 个答案:

答案 0 :(得分:1)

您可以将其转换为json格式并发送它,您可以再次将其解码以获得相同的数组

echo "<form name='formprocess' method='post' action='process.php'>

<input name='code_period_name' type='hidden' value='".json_encode($code_period)."'>
<input name='selection' type='hidden' value='".json_encode($selection)."'>

<input style='background:#13284B;color:White' type='submit' value='Process'>

</form>";

In Process.php
$code_period_name=json_decode($_POST['code_period_name']); //im catching these values this way
$selection=json_decode($_POST['selection']);

答案 1 :(得分:0)

我做的第一件事不是echo大量的静态HTML。

我要做的第二件事是......

<form name="formprocess" method="post" action="process.php">

<?php foreach ($code_period as $val) : ?>
<input type="hidden" name="code_period_name[]" value="<?= htmlspecialchars($val) ?>">
<?php endforeach ?>

<?php foreach ($selection as $val) : ?>
<input type="hidden" name="selection[]" value="<?= htmlspecialchars($val) ?>">
<?php endforeach ?>

<button type="submit">Process</button>

</form>

然后,当您访问$_POST['code_period_name']$_POST['selection']时,它们已经是数组。