PHP code example of amirhamdy / giata-hotels-api

1. Go to this page and download the library: Download amirhamdy/giata-hotels-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/ */

    

amirhamdy / giata-hotels-api example snippets


use GiataAPI;

$response = GiataAPI::getHotelsByCountry('EG', true);

GiataAPI::getHotelsByCountry('EG');

GiataAPI::getHotelsByCountry('EG', true);

GiataAPI::getHotelByGiataId(3);

GiataAPI::getImagesByGiataId(3);

GiataAPI::getTextsByGiataId(3);

GiataAPI::getTextsByGiataId(3, 'fr');