|
update : 2015.11.03
php.shukuma.com검색:
|
cubrid_data_seek(PECL CUBRID >= 8.3.0) cubrid_data_seek — Move the internal row pointer of the CUBRID result 설명
bool cubrid_data_seek
( resource
$result
, int $row_number
)
This function performs the moving of the internal row pointer of the
CUBRID result (associated with the specified result identifier) to point
to a specific row number. There are functions, such as
cubrid_fetch_assoc(), which use the current stored
value of 인수
반환값
Returns 예제Example #1 cubrid_data_seek() example
<?php위 예제의 출력:
array(2) {
[0]=>
string(1) "X"
[1]=>
string(5) "Mixed"
}
array(2) {
[0]=>
string(1) "M"
[1]=>
string(3) "Man"
}
array(2) {
[0]=>
string(1) "S"
[1]=>
string(6) "Silver"
}
|