PHP code example of emersonsm / php7-duckduckgo
1. Go to this page and download the library: Download emersonsm/php7-duckduckgo 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/ */
emersonsm / php7-duckduckgo example snippets
DuckDuckGo\Api;
$api = new Api();
$response = $api->zeroClickQuery("What is the meaning of life?");
if (isset($response["AbstractText"])) {
echo $response["AbstractText"];
} else {
echo "No abstract text found.";
}
composer