web-dev-qa-db-ja.com

PHP多次元配列のforeachループ

私は配列を持っています:

$arr_nav = array( array( "id" => "Apple", 
          "url" => "Apple.html",
          "name" => "My Apple" 
        ),
        array( "id" => "orange", 
          "url" => "orange/oranges.html",
          "name" => "View All Oranges",
        ),
        array( "id" => "pear", 
          "url" => "pear.html",
          "name" => "A Pear"
        )       
 );

Foreachループを使用して置き換えたい(これは、数値の設定のみを許可する:

for ($row = 0; $row < 5; $row++)

関連する配列値の.firstおよび.lastクラスを表示する機能

編集

データを次のようにエコーしたい:

<li id="' . $arr_nav[$row]["id"] . '"><a href="' . $v_url_root . $arr_nav[$row]["url"] . '" title="' . $arr_nav[$row]["name"] . '">"' . $arr_nav[$row]["name"] . '</a></li>' . "\r\n";

迅速な対応に感謝します。 StackOverflowが揺れる!

29
headband-dan
$last = count($arr_nav) - 1;

foreach ($arr_nav as $i => $row)
{
    $isFirst = ($i == 0);
    $isLast = ($i == $last);

    echo ... $row['name'] ... $row['url'] ...;
}
35
Greg
<?php
$php_multi_array = array("lang"=>"PHP", "type"=>array("c_type"=>"MULTI", "p_type"=>"ARRAY"));

//Iterate through an array declared above

foreach($php_multi_array as $key => $value)
{
    if (!is_array($value))
    {
        echo $key ." => ". $value ."\r\n" ;
    }
    else
    {
       echo $key ." => array( \r\n";

       foreach ($value as $key2 => $value2)
       {
           echo "\t". $key2 ." => ". $value2 ."\r\n";
       }

       echo ")";
    }
}
?>

出力:

lang => PHP
type => array( 
    c_type => MULTI
    p_type => ARRAY
)

参照ソースコード

5

A.firstとa.lastについて話すときに配列の最初と最後のエントリを意味する場合、次のようになります。

foreach ($arr_nav as $inner_array) {
    echo reset($inner_array); //Apple, orange, pear
    echo end($inner_array); //My Apple, View All Oranges, A Pear
}

PHPの配列は、 resetnextend で操作できる内部ポインターを持っています/ valuesは key および current で機能しますが、多くの場合は each を使用する方が適切です。

2
soulmerge
<?php
$first = reset($arr_nav); // Get the first element
$last  = end($arr_nav);   // Get the last element
// Ensure that we have a first element and that it's an array
if(is_array($first)) { 
   $first['class'] = 'first';
}
// Ensure we have a last element and that it differs from the first
if(is_array($last) && $last !== $first) {
   $last['class'] = 'last';
}

これで、html-generator内でクラスをエコーできます。クラスが設定されていることを確認するために何らかの種類のチェックが必要になるか、デフォルトの空のクラスを配列に提供する必要があります。

0