PHP code example of nemorize / indexnow

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

    

nemorize / indexnow example snippets


$indexnow = new \Nemorize\Indexnow\Indexnow();
$indexnow->setKey('fc1e3ad82010475381daf9846e627fdd');
$indexnow->submit('https://example.com/url-changed');
$indexnow->submit([
    'https://example.com/url-changed',
    'https://example.com/url-changed-2'
]);

Indexnow::setHost (string $host): void;

Indexnow::getHost (): string;

Indexnow::setKey (string $key): void;

Indexnow::getKey (): string;

Indexnow::setKeyLocation (?string $keyLocation): void;

Indexnow::getKeyLocation (): ?string;

Indexnow::submit (string|array $url, array $guzzleOptions = null): void;