mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
144 lines
3.7 KiB
PHP
144 lines
3.7 KiB
PHP
<?
|
|
class SphinxqlResult {
|
|
private $Result;
|
|
private $Meta;
|
|
public $Errno;
|
|
public $Error;
|
|
|
|
/**
|
|
* Create Sphinxql result object
|
|
*
|
|
* @param mysqli_result $Result query results
|
|
* @param array $Meta meta data for the query
|
|
* @param int $Errno error code returned by the query upon failure
|
|
* @param string $Error error message returned by the query upon failure
|
|
*/
|
|
public function __construct($Result, $Meta, $Errno, $Error) {
|
|
$this->Result = $Result;
|
|
$this->Meta = $Meta;
|
|
$this->Errno = $Errno;
|
|
$this->Error = $Error;
|
|
}
|
|
|
|
/**
|
|
* Redirect to the Mysqli result object if a nonexistent method is called
|
|
*
|
|
* @param string $Name method name
|
|
* @param array $Arguments arguments used in the function call
|
|
* @return whatever the parent function returns
|
|
*/
|
|
public function __call($Name, $Arguments) {
|
|
return call_user_func_array(array($this->Result, $Name), $Arguments);
|
|
}
|
|
|
|
/**
|
|
* Did the query find anything?
|
|
*
|
|
* @return bool results were found
|
|
*/
|
|
public function has_results() {
|
|
return $this->get_meta('total') > 0;
|
|
}
|
|
|
|
/**
|
|
* Collect and return the specified key of all results as a list
|
|
*
|
|
* @param string $Key key containing the desired data
|
|
* @return array with the $Key value of all results
|
|
*/
|
|
public function collect($Key) {
|
|
$Return = array();
|
|
while ($Row = $this->fetch_array()) {
|
|
$Return[] = $Row[$Key];
|
|
}
|
|
$this->data_seek(0);
|
|
return $Return;
|
|
}
|
|
|
|
/**
|
|
* Collect and return all available data for the matches optionally indexed by a specified key
|
|
*
|
|
* @param string $Key key to use as indexing value
|
|
* @param string $ResultType method to use when fetching data from the mysqli_result object. Default is MYSQLI_ASSOC
|
|
* @return array with all available data for the matches
|
|
*/
|
|
public function to_array($Key, $ResultType = MYSQLI_ASSOC) {
|
|
$Return = array();
|
|
while ($Row = $this->fetch_array($ResultType)) {
|
|
if ($Key !== false) {
|
|
$Return[$Row[$Key]] = $Row;
|
|
} else {
|
|
$Return[] = $Row;
|
|
}
|
|
}
|
|
$this->data_seek(0);
|
|
return $Return;
|
|
}
|
|
|
|
/**
|
|
* Collect pairs of keys for all matches
|
|
*
|
|
* @param string $Key1 key to use as indexing value
|
|
* @param string $Key2 key to use as value
|
|
* @return array with $Key1 => $Key2 pairs for matches
|
|
*/
|
|
public function to_pair($Key1, $Key2) {
|
|
$Return = array();
|
|
while ($Row = $this->fetch_array()) {
|
|
$Return[$Row[$Key1]] = $Row[$Key2];
|
|
}
|
|
$this->data_seek(0);
|
|
return $Return;
|
|
}
|
|
|
|
/**
|
|
* Return specified portions of the current Sphinxql result object's meta data
|
|
*
|
|
* @param mixed $Keys scalar or array with keys to return. Default is false, which returns all meta data
|
|
* @return array with meta data
|
|
*/
|
|
public function get_meta($Keys = false) {
|
|
if ($Keys !== false) {
|
|
if (is_array($Keys)) {
|
|
$Return = array();
|
|
foreach ($Keys as $Key) {
|
|
if (!isset($this->Meta[$Key])) {
|
|
continue;
|
|
}
|
|
$Return[$Key] = $this->Meta[$Key];
|
|
}
|
|
return $Return;
|
|
} else {
|
|
return isset($this->Meta[$Keys]) ? $this->Meta[$Keys] : false;
|
|
}
|
|
} else {
|
|
return $this->Meta;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Return specified portions of the current Mysqli result object's information
|
|
*
|
|
* @param mixed $Keys scalar or array with keys to return. Default is false, which returns all available information
|
|
* @return array with result information
|
|
*/
|
|
public function get_result_info($Keys = false) {
|
|
if ($Keys !== false) {
|
|
if (is_array($Keys)) {
|
|
$Return = array();
|
|
foreach ($Keys as $Key) {
|
|
if (!isset($this->Result->$Key)) {
|
|
continue;
|
|
}
|
|
$Return[$Key] = $this->Result->$Key;
|
|
}
|
|
return $Return;
|
|
} else {
|
|
return isset($this->Result->$Keys) ? $this->Result->$Keys : false;
|
|
}
|
|
} else {
|
|
return $this->Result;
|
|
}
|
|
}
|
|
}
|