Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16316 программистов и 1793 робота. Сейчас ищут 1990 программистов ...
TokyoTyrantQuery::hint - Get the hint string of the query
Вернуться к: TokyoTyrantQuery
TokyoTyrantQuery::hint
(Информация о версии неизвестна, возможно, только в SVN)
TokyoTyrantQuery::hint — Get the hint string of the query
Описание
public string TokyoTyrantQuery::hint
( void
)
Get the hint string of the query. The hint string contains information about an executed query and it could be compared to for example MySQL EXPLAIN statement.
Список параметров
У этой функции нет параметров.
Возвращаемые значения
This method always returns a string
Примеры
Пример #1 TokyoTyrantQuery::hint example
<?php
$tt = new TokyoTyrantTable("localhost", 1979);
$tt->vanish();
for ($i = 0; $i < 11; $i++) {
$tt->put(null, array('a_col' => 'a' . $i, 'b_col' => 'b' . $i));
}
$query = $tt->getQuery();
$query->addCond('a_col', TokyoTyrant::RDBQC_STRBW, 'a');
$query->search();
var_dump($query->hint());
?>
Результатом выполнения данного примера будет что-то подобное:
string(72) " scanning the whole table result set size: 11 leaving the natural order "
Вернуться к: TokyoTyrantQuery