Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将一个变量附加到一个数组。如果我在任何方面出错,请指导我:
$arr= array();// 定义 arr 一个空数组 ?
$arr= array();
$deposit=$_POST['amountdeposit'];// 这是一个我想附加到 arr 数组的变量。
$deposit=$_POST['amountdeposit'];
// 现在数组 arr 看起来更像array("$deposit ")?
array("$deposit ")
然后我需要在 url 中传递这个数组。
当再次有一个值时,$_POST['amountdeposit']它会再次附加到这个现有的数组中。
$_POST['amountdeposit']
应该像使用[]:
[]
$arr = array(); $arr[] = $_POST['amountdeposit'];
array (size=n) 0 => int 10 1 => int 20 2 => int 30 n+ => ...
我想你想要这个
$arr[] = $_POST['amountdeposit'];