array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'zh', ), 'this' => array ( 0 => 'function.cubrid-column-names.php', 1 => 'cubrid_column_names', 2 => 'Get the column names in result', ), 'up' => array ( 0 => 'ref.cubrid.php', 1 => 'CUBRID 函数', ), 'prev' => array ( 0 => 'function.cubrid-col-size.php', 1 => 'cubrid_col_size', ), 'next' => array ( 0 => 'function.cubrid-column-types.php', 1 => 'cubrid_column_types', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/cubrid/functions/cubrid-column-names.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

cubrid_column_names

(PECL CUBRID >= 8.3.0)

cubrid_column_namesGet the column names in result

说明

cubrid_column_names(resource $req_identifier): array

The cubrid_column_names() function is used to get the column names of the query result by using req_identifier.

参数

req_identifier

Request identifier.

返回值

Array of string values containing the column names, when process is successful, 或者在失败时返回 false.

示例

示例 #1 cubrid_column_names() example

<?php
$conn
= cubrid_connect("localhost", 33000, "demodb", "dba");
$result = cubrid_execute($conn, "SELECT * FROM game WHERE host_year=2004 AND nation_code='AUS' AND medal='G'");

$column_names = cubrid_column_names($result);
$column_types = cubrid_column_types($result);

printf("%-30s %-30s %-15s\n", "Column Names", "Column Types", "Column Maxlen");
for(
$i = 0, $size = count($column_names); $i < $size; $i++) {
$column_len = cubrid_field_len($result, $i);
printf("%-30s %-30s %-15s\n", $column_names[$i], $column_types[$i], $column_len);
}

cubrid_disconnect($conn);
?>

以上示例会输出:

Column Names                   Column Types                   Column Maxlen  
host_year                      integer                        11             
event_code                     integer                        11             
athlete_code                   integer                        11             
stadium_code                   integer                        11             
nation_code                    char                           3              
medal                          char                           1              
game_date                      date                           10

参见