mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-25 13:28:56 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@139449 c90b9560-bf6c-de11-be94-00142212c4b1
68 lines
1.9 KiB
XML
68 lines
1.9 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.7 $ -->
|
|
<!-- splitted from ./en/functions/ibase.xml, last change in rev 1.23 -->
|
|
<refentry id="function.ibase-field-info">
|
|
<refnamediv>
|
|
<refname>ibase_field_info</refname>
|
|
<refpurpose>
|
|
Get information about a field
|
|
</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>array</type><methodname>ibase_field_info</methodname>
|
|
<methodparam><type>resource</type><parameter>result</parameter></methodparam>
|
|
<methodparam><type>int</type><parameter>field_number</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Returns an array with information about a field after a select
|
|
query has been run. The array is in the form of name, alias,
|
|
relation, length, type.
|
|
</para>
|
|
<para>
|
|
<informalexample>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$rs = ibase_query("SELECT * FROM tablename");
|
|
$coln = ibase_num_fields($rs);
|
|
for ($i = 0; $i < $coln; $i++) {
|
|
$col_info = ibase_field_info($rs, $i);
|
|
echo "name: ". $col_info['name']. "\n";
|
|
echo "alias: ". $col_info['alias']. "\n";
|
|
echo "relation: ". $col_info['relation']. "\n";
|
|
echo "length: ". $col_info['length']. "\n";
|
|
echo "type: ". $col_info['type']. "\n";
|
|
}
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</informalexample>
|
|
</para>
|
|
<para>
|
|
See also: <function>ibase_num_fields</function>.
|
|
</para>
|
|
</refsect1>
|
|
</refentry>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|