注意未定义的偏移量PHP

时间:2019-05-24 20:34:03

标签: php

我的代码有什么问题,我在第33行的/home/xxx/public_html/gapi/test.php中有未定义的偏移量:681

第33行是

if(is_numeric($pagepath))$groupedResults[$pagepath] += $pageviews;

这是完整的代码

$groupedResults = array();
foreach ($ga->getResults() as $result) {
    $pageviews = $result->getPageviews();
    $pagepath = get_part_url($result->getPagePath());
    if(is_numeric($pagepath))$groupedResults[$pagepath] += $pageviews;
}

我打印了$result,它的值还可以,没有空也没有错误...但是在这里仍然找不到问题

0 个答案:

没有答案