将嵌套数组中的值存储在新数组中

时间:2015-08-03 20:53:26

标签: php arrays foreach nested

好的我是数组的新手,这可能很简单,但我很难理解它。

我有一个简单的嵌套数组。我想要做的是遍历所有值只获取img url并将它们存储在一个单独的变量数组中。

我当前的代码可以找到网址,但不是很干净,并且不会定位数组的url条目,而只是测试变量是否以“http”开头,以确定它是否是正确的条目。我想简单地从每个嵌套数组的第一项创建一个变量。

目前,数组和代码的结构如下:

   Array
(
    [0] => Array
        (
            [0] => http://samplesite.com/img1.jpg
            [1] => 1000
            [2] => 667
            [3] => 
        )

    [1] => Array
        (
            [0] => http://samplesite.com/img2.jpg
            [1] => 1000
            [2] => 667
            [3] => 
        )

)

<?php foreach ($img_array AS $array) {
        foreach ($array AS $item) {
        //check to see if it is the URL entry else skip that part of array
            if (strpos($item, "http") === 0) {;?>
                <div>
                    <?php echo $item ?>
                </div>
    <?php 
    }
        } 
            }?>

我知道您可以使用这种语句来定位嵌套数组:

foreach ($img_array AS $array => $item)

但是当我使用它时,我不会返回任何值只是单词“array”?

由于这些始终是嵌套数组的第一个值,我应该能够绕过if语句寻找“http”以确定该值是否为url。

目标是将所有网址提取为可用于从图片生成幻灯片的唯一变量。

像这样的东西。 foreach循环生成单独的幻灯片代码。

<div class="item active">
  <img src="<?php $array[0] ?>" alt="alt" width="1000" height="400">
  <div class="carousel-caption">
    <p>Caption text here</p>
  </div>
</div>

<div class="item">
  <img src="<?php $array[1] ?>" alt="alt" width="1000" height="400">
  <div class="carousel-caption">
    <p>Caption text here</p>
  </div>
</div>

<div class="item">
  <img src="<?php $array[2] ?>" alt="alt" width="1000" height="400">
  <div class="carousel-caption">
    <p>Caption text here</p>
  </div>
</div>

感谢您的期待!

埃里克

2 个答案:

答案 0 :(得分:1)

如果它始终是第一个值,则可以简单地访问嵌套数组中的第一个(带索引0)字符串:

<?php foreach ($img_array AS $array) { ?>
            <div>
                <?php echo $array[0] ?>
            </div>
<?php } ?>

答案 1 :(得分:0)

只需使用for循环即可:

$img_urls = array();
for ($i = 0; $i < count($img_array); $i++) {
    $img_urls[$i] = $img_array[$i][0]; // since it is always the first element in the array
}

echo $img_urls[1]; // this will show the first image url