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.
我想在 $_POST[] 括号内连接一个变量以进行 while 循环。我的问题是,有没有可能。这是代码。
$m=0; $_POST['tier_' . $m];
是的。但是,您的表单可能更像是:
<input type="text" name="tier[]" />
然后$_POST['tier']将是一个可以循环的数组。
$_POST['tier']
有可能,是的,但是您提供的代码示例会引起通知,因为它会尝试检查尚不存在的索引。以下将起作用:
$m=0; $_POST['tier_' . $m] = 'something';