当我通过post方法提交表单时,我获得了这样的数组值。
array
'custom_profile_type' =>
array
0 => string '39242' (length=5)
'satori_programme' => string '0' (length=1)
我想从上面的数组中获取值39242
。怎么做到的?任何想法的人?
答案 0 :(得分:5)
像...一样访问它。
echo $yourarray['custom_profile_type'][0];
答案 1 :(得分:4)
echo $array['custom_profile_type'][0];
答案 2 :(得分:3)
使用以下代码访问|您可以添加循环以获取如下所示的所有值
静态代码
echo $array['custom_profile_type'][6]
echo $array['custom_profile_type'][0]
动态代码
<?php
$array = $_POST['custom_profile_type'];
foreach($array as $key => $value) {
echo $key . " => " . $value;
}
?>