SQLite3::querySingle(PHP 5 >= 5.3.0) SQLite3::querySingle — Executes a query and returns a single result ОписаниеExecutes a query and returns a single result. Список параметров
Возвращаемые значенияReturns the value of the first column of results or an array of the entire first row (if entire_row is TRUE). If the query is valid but no results are returned, then NULL will be returned if entire_row is FALSE, otherwise an empty array is returned. Invalid or failing queries will return FALSE. Примеры
Пример #1 SQLite3::querySingle() example
<?phpРезультатом выполнения данного примера будет что-то подобное:
string(5) "Scott"
Array
(
[username] => Scott
[email] => scott@example.com
)
|
||