doudaochu1699 2013-12-30 04:06
浏览 23

在数组中使用这两个变量

So I have an array as follows:

$months = array(
  '01' => 'January',
  '02' => 'Febuary',  
  '03' => 'March',
  '04' => 'April'
);

I am putting these into a form select and would like to do the following:

<option value="01">January</option> 

for each variable in the $months array.

Right now I have the following code with the result of: <option value="">January</option>

<?php foreach ($months as $month): ?>
  <option value=""><?php echo $month; ?></option>
<?php endforeach; ?>

I'm not really sure how to make use of the first variable in the array. Or if that is even possible. What is teh easiest way to do what I'm trying to do?

  • 写回答

5条回答 默认 最新

  • dongzhi7641 2013-12-30 04:07
    关注

    your array is key & value format, so just add key to your loop:

    <?php foreach ($months as $key => $month): ?>
      <option value="<?php echo $key; ?>"><?php echo $month; ?></option>
    <?php endforeach; ?>
    

    See:: PHP Arrays

    评论

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效