美文网首页
for循环关联数组取重要值

for循环关联数组取重要值

作者: 骚伦 | 来源:发表于2018-11-29 09:51 被阅读0次
    $config = array('ddsd'=>13,'fdasfda'=>'fdasfsda','fdasf'=>'fdsafdsa')
    $num = 0;
    for ($i = 0;$i < count($config); $i++)
    {
        $num += 1;
        echo key($config).'=>'.current($config).'//'.$num.'<br />';
        next($config);
    }
    

    相关文章

      网友评论

          本文标题:for循环关联数组取重要值

          本文链接:https://www.haomeiwen.com/subject/lpdxcqtx.html