sybase_fetch_array

Fetches a result row as an associative array, a numeric array, or both.

Syntax

mixed sybase_fetch_array(resource $result
[, int $result_type ] )

Parameters

Returns

Associative array (identical to sybase_fetch_assoc()) when $result_type is SYB_FETCH_ASSOC or SYB_FETCH_BOTH.

Numeric array (identical to sybase_fetch_row()) when $result_type is SYB_FETCH_NUM or SYB_FETCH_BOTH.

FALSE – there were no more rows to be fetched.