PHP code example of fakellyh / bing-api-php

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

    

fakellyh / bing-api-php example snippets



use Fakell\Bing\Bing;
use Fakell\Bing\Constant\Tones;

// Include the Composer autoloader

$bing->ask("Hello world!", Tones::CREATIVE);

// Display the response data
$response = $bing->getResponse();
print_r($response);
bash
composer