mirror of https://github.com/YGGverse/YGGo.git
phpyggdrasilmysqlcrawlerjs-lessalt-websphinxspiderdistributedwebsearch-engineopen-sourcefederativeweb-archivepdocurlparserfts5privacy-orientedsphinxsearch
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
929 B
32 lines
929 B
2 years ago
|
<?php
|
||
|
|
||
|
class SphinxQL {
|
||
|
|
||
|
private $_sphinx;
|
||
|
|
||
|
public function __construct(string $host, int $port) {
|
||
|
|
||
|
$this->_sphinx = new PDO('mysql:host=' . $host . ';port=' . $port . ';charset=utf8', false, false, [PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8']);
|
||
|
$this->_sphinx->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
||
|
$this->_sphinx->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_OBJ);
|
||
|
}
|
||
|
|
||
|
public function searchHostPages(string $keyword, int $start, int $limit) {
|
||
|
|
||
|
$query = $this->_sphinx->prepare('SELECT * FROM `hostPage` WHERE MATCH(?) LIMIT ' . (int) $start . ',' . (int) $limit);
|
||
|
|
||
|
$query->execute([$keyword]);
|
||
|
|
||
|
return $query->fetchAll();
|
||
|
}
|
||
|
|
||
|
public function searchHostPagesTotal(string $keyword) {
|
||
|
|
||
|
$query = $this->_sphinx->prepare('SELECT COUNT(*) AS `total` FROM `hostPage` WHERE MATCH(?)');
|
||
|
|
||
|
$query->execute([$keyword]);
|
||
|
|
||
|
return $query->fetch()->total;
|
||
|
}
|
||
|
}
|