PHP code example of vergelijkgroep / php-kiyoh-api

1. Go to this page and download the library: Download vergelijkgroep/php-kiyoh-api 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/ */

    

vergelijkgroep / php-kiyoh-api example snippets



/**
 * @author Keuze.nl
 */
ge with your hash
$count = 50; // Amount of reviews you want to get
$timeout = 2; // Max duration in seconds of the fetch operation

$kiyoh = new \keuze\Kiyoh\Kiyoh($connector, $count, $timeout);

// Optionally set fallback company information and reviews
$kiyoh->setFallbackCompany([
    'averageRating' => 5,
    'numberReviews' => 100,
    'last12MonthAverageRating' => 5,
    'last12MonthNumberReviews' => 100,
    'percentageRecommendation' => 100,
    'locationId' => 1,
    'locationName' => 'Test',
    'reviews' => [
        [
            'id' => '1',
            'reviewAuthor' => 'John Doe',
            'city' => 'Amsterdam',
            'rating' => 5.0,
            'content' => 'Excellent service!',
            'dateSince' => '2023-01-01',
            'updatedSince' => '2023-01-02',
        ],
        [
            'id' => '2',
            'reviewAuthor' => 'Jane Smith',
            'city' => 'Rotterdam',
            'rating' => 4.5,
            'content' => '1',
            'dateSince' => '2023-02-01',
        ],
        [
            'id' => '3',
            'reviewAuthor' => 'Alice Johnson',
            'rating' => 4.0,
            'content' => 'Good service.',
        ]
    ]
]);


try {
    $company = $kiyoh->getCompany();
} catch (\Throwable $th) {
    // Handle errors
    echo $th->getMessage();

    //throw $th;

    // OR use teh fallback
    $company = $kiyoh->getFallbackCompany();
}


var_dump($company->getReviews()[0]->getId());

var_dump($company->getLocationName());
var_dump($company->getAverageRating());
var_dump($company->getNumberReviews());

var_dump($kiyoh->getCompany());

var_dump($kiyoh->getCompany()->getReviews()[0]);