如何从preg_match_all结果中读取此数组?

时间:2014-12-28 09:08:19

标签: php arrays

我有来自preg_match_all

的结果
preg_match_all('#mpeg"\],"Content-Length":\["(.*?)","(.*?)"#', $size,$out);

输出:

Array
(
    [0] => Array
        (
            [0] => mpeg"],"Content-Length":["697","3595701"
        )

    [1] => Array
        (
            [0] => 697
        )

    [2] => Array
        (
            [0] => 3595701
        )

)

我试图显示最后一个值:3595701 whit:

$size = $out[2][0];

但总是空的?我想念一下吗?

1 个答案:

答案 0 :(得分:0)

而不是转储preg_match_all的值,可能会转储$out的值 - 我觉得你的价值在于$out[2]