PHP code example of solr / console

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

    

solr / console example snippets


#!/usr/bin/env php


 HttpClient;
use Symfony\Component\Console\Application;

$httpClient = new HttpClient(['base_url' => 'http://localhost:8983/solr']); // Your Solr host.
$zkClient = new \Zookeeper('localhost:2181'). // Your Zookeeper host.

$application = new Application();
$application->add(new Collection\All($httpClient);
$application->add(new Collection\Reload($httpClient);
$application->add(new Collection\Remove($httpClient);
$application->add(new Collection\Create($httpClient);
$application->add(new Schema\All($zkClient);
$application->add(new Schema\LinkConfig($zkClient);
$application->add(new Schema\Download($zkClient);
$application->add(new Schema\Upload($zkClient);
$application->add(new Schema\Remove($zkClient);
$application->run();