mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-24 04:48:55 +00:00
190 lines
5.3 KiB
XML
190 lines
5.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<refentry xml:id="mysqli-result.fetch-assoc" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>mysqli_result::fetch_assoc</refname>
|
|
<refname>mysqli_fetch_assoc</refname>
|
|
<refpurpose>Fetch a result row as an associative array</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<para>&style.oop;</para>
|
|
<methodsynopsis role="oop">
|
|
<modifier>public</modifier> <type class="union"><type>array</type><type>null</type><type>false</type></type><methodname>mysqli_result::fetch_assoc</methodname>
|
|
<void/>
|
|
</methodsynopsis>
|
|
<para>&style.procedural;</para>
|
|
<methodsynopsis role="procedural">
|
|
<type class="union"><type>array</type><type>null</type><type>false</type></type><methodname>mysqli_fetch_assoc</methodname>
|
|
<methodparam><type>mysqli_result</type><parameter>result</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Returns an associative array that corresponds to the fetched row or &null;
|
|
if there are no more rows.
|
|
</para>
|
|
&database.field-case;
|
|
&database.fetch-null;
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
&mysqli.result.description;
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Returns an associative array of values representing the fetched row in the result
|
|
set, where each key in the array represents the name of one of the result
|
|
set's columns or &null; if there are no more rows in result set.
|
|
</para>
|
|
<para>
|
|
If two or more columns of the result have the same field names, the last
|
|
column will take precedence. To access the other column(s) of the same
|
|
name, you either need to access the result with numeric indices by using
|
|
<function>mysqli_fetch_row</function> or add alias names.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<example>
|
|
<title><methodname>mysqli_result::fetch_assoc</methodname> example</title>
|
|
<para>&style.oop;</para>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
|
|
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
|
|
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
|
|
|
|
$query = "SELECT Name, CountryCode FROM City ORDER BY ID DESC";
|
|
|
|
$result = $mysqli->query($query);
|
|
|
|
/* fetch associative array */
|
|
while ($row = $result->fetch_assoc()) {
|
|
printf("%s (%s)\n", $row["Name"], $row["CountryCode"]);
|
|
}
|
|
]]>
|
|
</programlisting>
|
|
<para>&style.procedural;</para>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
|
|
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
|
|
$mysqli = mysqli_connect("localhost", "my_user", "my_password", "world");
|
|
|
|
$query = "SELECT Name, CountryCode FROM City ORDER BY ID DESC";
|
|
|
|
$result = mysqli_query($mysqli, $query);
|
|
|
|
/* fetch associative array */
|
|
while ($row = mysqli_fetch_assoc($result)) {
|
|
printf("%s (%s)\n", $row["Name"], $row["CountryCode"]);
|
|
}
|
|
]]>
|
|
</programlisting>
|
|
&examples.outputs.similar;
|
|
<screen>
|
|
<![CDATA[
|
|
Pueblo (USA)
|
|
Arvada (USA)
|
|
Cape Coral (USA)
|
|
Green Bay (USA)
|
|
Santa Clara (USA)
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
<example xml:id="mysqli-result.example.iterator">
|
|
<title>Comparison of <classname>mysqli_result</classname> <classname>iterator</classname> and <methodname>mysqli_result::fetch_assoc</methodname> usage</title>
|
|
<para>
|
|
<classname>mysqli_result</classname> can be iterated using &foreach;.
|
|
The result set will always be iterated from the first row, regardless of the current position.
|
|
</para>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
|
|
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
|
|
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
|
|
|
|
$query = 'SELECT Name, CountryCode FROM City ORDER BY ID DESC';
|
|
|
|
// Using iterators
|
|
$result = $mysqli->query($query);
|
|
foreach ($result as $row) {
|
|
printf("%s (%s)\n", $row["Name"], $row["CountryCode"]);
|
|
}
|
|
|
|
echo "\n==================\n";
|
|
|
|
// Not using iterators
|
|
$result = $mysqli->query($query);
|
|
while ($row = $result->fetch_assoc()) {
|
|
printf("%s (%s)\n", $row["Name"], $row["CountryCode"]);
|
|
}
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs.similar;
|
|
<screen>
|
|
<![CDATA[
|
|
Pueblo (USA)
|
|
Arvada (USA)
|
|
Cape Coral (USA)
|
|
Green Bay (USA)
|
|
Santa Clara (USA)
|
|
|
|
==================
|
|
Pueblo (USA)
|
|
Arvada (USA)
|
|
Cape Coral (USA)
|
|
Green Bay (USA)
|
|
Santa Clara (USA)
|
|
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>mysqli_fetch_array</function></member>
|
|
<member><function>mysqli_fetch_column</function></member>
|
|
<member><function>mysqli_fetch_row</function></member>
|
|
<member><function>mysqli_fetch_object</function></member>
|
|
<member><function>mysqli_query</function></member>
|
|
<member><function>mysqli_data_seek</function></member>
|
|
</simplelist>
|
|
</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:"~/.phpdoc/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
|
|
-->
|