php要怎麼get陣列

2020-07-16 10:06:48

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陣列的詳細內容,更多請關注TW511.COM其它相關文章!