您好,登錄后才能下訂單哦!
這篇文章主要介紹了php要如何get數組,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
php要怎么get數組
通過數組傳遞表單數據,可以保存數據之間的業務屬性關系,比如有很多Student,每個Student都有姓名、年齡、性別、愛好等表單信息。提交表單后還需要針對每個student進行處理或者保存。這樣肯定需要為每個student的這些屬性表單建立起關聯關系,一種方式是根據屬性表單的name上加特殊標記進行識別,使用數組傳遞表單就能使表單數據更結構化。
例子如下:
<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數組內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。