php要怎麼get數組

angryTom
發布: 2023-02-27 19:04:02
原創
3063 人瀏覽過

php要怎麼get數組

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[&#39;msginfo&#39;];
 $phoneNums = $msgInfos[&#39;name&#39;]; // 为array(-=>张三,1=>李四)
 $phoneNums = $msgInfos[&#39;phonenum&#39;]; // 为array(0=>111111111,1=>222222222)
登入後複製

例一

<?php
if(isset($_POST[&#39;submit&#39;])){
$users = $_POST[&#39;user&#39;];
foreach($users as $key=>$val){
  echo &#39;user &#39;,$key,&#39; = &#39;,$val,&#39;<br />&#39;;
}
}
?>
登入後複製
<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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板