2015-11-05 71 views
1

我想在這裏找回ga:pagePathLevel1但得到錯誤無法檢索pagePathLevel1尺寸

警告:array_merge():參數#2是不是在 ... \谷歌API的PHP客戶端陣列\ SRC \谷歌\服務\ Analytics.php上線 1925年

function getResults(&$analytics, $profileId) { 
    // Calls the Core Reporting API and queries for the number of sessions 
    // for the last seven days. 
    $analytica_report['data_ga_get'] = $analytics->data_ga->get(
     'ga:' . $profileId, 
     '7daysAgo', 
     'today', 
'ga:sessions,ga:pageviews,ga:uniquePageviews,ga:bounces,ga:timeOnPage,ga:sessionDuration,ga:entrances,ga:exits,ga:searchUniques,ga:transactions', 
    'ga:pagePathLevel1,ga:pagePathLevel2'  
    ); 

任何人都可以建議我怎樣才能使它正確嗎?

回答

0

該方法的最後一個參數是可選參數。嘗試類似這樣的

​​

您可能還會發現documentation有用。

+0

我自己解決了,但你的答案是正確的。 –