我是Elasticsearch和PHP的新手。我一直试图找出我收到的代码的问题。我使用PHP 7.1和Elasticsearch 6.2来使用WAMP 3.1。
当我转到我的localhost时,我收到以下错误:
Fatal error: Uncaught TypeError: Argument 1 passed to Elasticsearch\Client::__construct() must be an instance of Elasticsearch\Transport, array given, called in C:\wamp64\www\search\init.php on line 5 and defined in C:\wamp64\www\search\vendor\elasticsearch\elasticsearch\src\Elasticsearch\Client.php:98 Stack trace: #0 C:\wamp64\www\search\init.php(5): Elasticsearch\Client->__construct(Array) #1 C:\wamp64\www\search\index.php(2): require_once('C:\\wamp64\\www\\s...') #2 {main} thrown in C:\wamp64\www\search\vendor\elasticsearch\elasticsearch\src\Elasticsearch\Client.php on line 98
我可以看到我的Init.php可能存在问题,但是我一直在使用我未经修改而收到的那个,所以我不确定这是不是问题。
<?php
require_once 'vendor/autoload.php';
$es = new Elasticsearch\Client([
'hosts' => ['127.0.0.1:9200']
]);
Here is also the index.php.
<?php
require_once 'init.php';
require 'vendor/autoload.php';
use Elasticsearch\ClientBuilder;
$client = Elasticsearch\ClientBuilder::create()->build();
if (isset($_GET['q'])) {
$q = $_GET['q'];
$query = $es->search([
'body' => [
'query' => [
'bool' => [
'should' => [
'match' => ['name' => $q],
'match' => ['content' => $q]
]
]
]
]
]);
}
echo '<pre>', print_r($query), '</pre>';
if($query['hits']['total'] >=1 ) {
$results = $query['hits']['hits'];
}
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>search | ES</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<form action="index.php" method="get" autocomplete="off">
<label>
Search
<input type="text" name="q">
</label>
<input type="submit" value="Search">
</form>
<?php
if(isset($results)) {
foreach($results as $r) {
?>
<div class="result">
<a href="#<?php echo $r['_id']; ?>"><?php echo $r['_source']['title'];?></a>
<div class="result-keywords"><?php implode(', ', $r['_source']['keywords']);?></div>
</div>
<?php
}
}
?>
</body>
</html>
如果能解决这个问题,我很乐意提供其他任何东西。
答案 0 :(得分:1)
您根本不需要init
(除了您在那里使用错误的客户端类别之外)。只是做:
require_once 'vendor/autoload.php';
use Elasticsearch\ClientBuilder;
$client = ClientBuilder::create()->setHosts(['127.0.0.1:9200'])->build();