update : 2015.11.03
php.shukuma.com검색:
|
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
If the query is valid but no results are returned, then
Invalid or failing queries will return 예제
Example #1 SQLite3::querySingle() example
<?php 위 예제의 출력 예시: string(5) "Scott" Array ( [username] => Scott [email] => scott@example.com ) |