update : 2015.11.03
php.shukuma.com검색:
|
sqlite_currentSQLiteResult::currentSQLiteUnbuffered::current(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) sqlite_current -- SQLiteResult::current -- SQLiteUnbuffered::current — Fetches the current row from a result set as an array 설명
array sqlite_current
( resource
$result
[, int $result_type = SQLITE_BOTH
[, bool $decode_binary = true
]] )객체 기반 형식 (method):
array SQLiteResult::current
([ int
$result_type = SQLITE_BOTH
[, bool $decode_binary = true
]] )
array SQLiteUnbuffered::current
([ int
$result_type = SQLITE_BOTH
[, bool $decode_binary = true
]] )sqlite_current() is identical to sqlite_fetch_array() except that it does not advance to the next row prior to returning the data; it returns the data from the current position only. 인수
반환값
Returns an array of the current row from a result set;
참고
|