I want to extract pageviews for landing page, The pageviews shown in google anlytic Report page is shown in below image

any help will be appreciated..
Thanks in advance..
Thanks if you try...
I got Answer If anyone need You can write code like this:
$landingPages = $ga->getReport(
array('dimensions'=>urlencode('ga:pagePath'),
'metrics'=>urlencode('ga:pageviews'),
'max-results' => $limit,
'filters' => urlencode('ga:pagePath==/')
)
);