PHP code example of data-analytic / google-ads

1. Go to this page and download the library: Download data-analytic/google-ads library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

data-analytic / google-ads example snippets

`
$data = [
      'keyWords' => ['apple', 'jam'],
      'languageCode' => 'en',
  ];
$googleAdsManager = new GoogleAdsManager(new ConnectionResolver());
$keyWordMetrics = $googleAdsManager->getKeywordMetric($data, 'EN');
Export::createXlsFile('test.xlsx', $keyWordMetrics);
`
$keywordIdeaMetrics = $googleAdsManager->getKeywordIdeaMetrics( $data, 'US');