如何使用php将数组值打印到非数组值

时间:2014-06-06 12:47:17

标签: php string

例如: -

print_r($matches);

**output:**  Array ( [0] => Array ( [0] => 5000 ) )

但是

如果我使用echo,

echo ($matches)

**output:** Array

我如何只打印值?

2 个答案:

答案 0 :(得分:0)

foreach($matches as $match) {
    echo $match;
}

在您的示例中,您在数组中有一个数组。然后访问这样的值:

foreach($matches as $match) {
    foreach($match as $secondMatch) {
        echo $secondMatch;
    }
}

像这样,您遍历数组并使用echo打印每个条目。 但你可以只是google" php array"

答案 1 :(得分:0)

在您的情况下,您需要使用

echo $matches[0][0];

这样的大多数问题都可以在php手册中找到答案

示例#6从http://www.php.net/manual/en/language.types.array.php

访问数组元素