php要怎麼get數組
#透過數組傳遞表單數據,可以保存資料之間的業務屬性關係,例如有很多Student,每個Student都有姓名、年齡、性別、嗜好等表單資訊。提交表單後還需要針對每個student進行處理或儲存。這樣肯定需要為每個student的這些屬性表單建立起關聯關係,一種方式是根據屬性表單的name上加特殊標記進行識別,使用陣列傳遞表單就能使表單資料更結構化。
(推薦學習:PHP影片教學)
範例如下:
<input type="hidden" name="msginfo[name][]" value="张三"/> <input type="hidden" name="msginfo[phonenum][]" value="111111111"/> <input type="hidden" name="msginfo[name][]" value="李四"/> <input type="hidden" name="msginfo[phonenum][]" value="222222222"/>
php程式碼:
<?php $msgInfos = $_POST['msginfo']; $phoneNums = $msgInfos['name']; // 为array(-=>张三,1=>李四) $phoneNums = $msgInfos['phonenum']; // 为array(0=>111111111,1=>222222222)
例一
<?php if(isset($_POST['submit'])){ $users = $_POST['user']; foreach($users as $key=>$val){ echo 'user ',$key,' = ',$val,'<br />'; } } ?>
<form method="post"> zhangsan <input type="text" name="user[zhangsan]" value="0" /><br /> lisi <input type="text" name="user[lisi]" value="1" /><br /> wangwu <input type="text" name="user[wangwu]" value="2" /><br /> zhaoliu <input type="text" name="user[zhaoliu]" value="3" /><br /> <input type="submit" name="submit" value="提交" /> </form>
例二
<form method="post"> <? for($i=0;$i<10;$i++){ ?> <input type="checkbox" name="interests[]" value="<?=$i?>">test<?=$i?><br> <? } ?> <input type="submit"> </form> <?php <code class="php keyword">if(isset($_POST)){ foreach($_POST as $key => $val){ if(is_array($val)){ foreach($val as $v2){ echo "$v2<br>"; } } } } ?> </code>
以上是php要怎麼get數組的詳細內容。更多資訊請關注PHP中文網其他相關文章!