<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.mysql.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'function.mysql-list-fields.php',
    1 => 'mysql_list_fields',
    2 => 'List MySQL table fields',
  ),
  'up' => 
  array (
    0 => 'ref.mysql.php',
    1 => 'MySQL Функції',
  ),
  'prev' => 
  array (
    0 => 'function.mysql-list-dbs.php',
    1 => 'mysql_list_dbs',
  ),
  'next' => 
  array (
    0 => 'function.mysql-list-processes.php',
    1 => 'mysql_list_processes',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/mysql/functions/mysql-list-fields.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.mysql-list-fields" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">mysql_list_fields</h1>
  <p class="verinfo">(PHP 4, PHP 5)</p><p class="refpurpose"><span class="refname">mysql_list_fields</span> &mdash; <span class="dc-title">List MySQL table fields</span></p>

 </div>

 <div id="function.mysql-list-fields-refsynopsisdiv">
  <div class="warning"><strong class="warning">Увага</strong>
   <p class="para">Ця функція застаріла, починаючи з
PHP 5.4.0, та разом з <a href="book.mysql.php" class="link">початковим розширенням
MySQL</a> була вилучена з PHP 7.0.0. Краще використати розширення
<a href="book.mysqli.php" class="link">MySQLi</a> або
<a href="ref.pdo-mysql.php" class="link">PDO_MySQL</a>, які жваво розробляються.
Докладніше описано у керівництві <a href="mysqlinfo.api.choosing.php" class="link">MySQL:
вибір API</a>. Цю функцію можна замінити на:</p>
   <ul class="simplelist">
    <li>SQL Query: <code class="literal">SHOW COLUMNS FROM sometable</code></li>
   </ul>
  </div>
 </div>

 <div class="refsect1 description" id="refsect1-function.mysql-list-fields-description">
  <h3 class="title">Опис</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>mysql_list_fields</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$database_name</code></span>, <span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$table_name</code></span>, <span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$link_identifier</code><span class="initializer"> = NULL</span></span>): <span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span></div>

  <p class="para rdfs-comment">
   Retrieves information about the given table name.
  </p>
  <p class="para">
   This function is deprecated. It is preferable to use 
   <span class="function"><a href="function.mysql-query.php" class="function">mysql_query()</a></span> to issue an SQL <code class="literal">SHOW COLUMNS FROM 
   table [LIKE &#039;name&#039;]</code> statement instead.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.mysql-list-fields-parameters">
  <h3 class="title">Параметри</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">database_name</code></dt>
     <dd>
      <p class="para">
       The name of the database that&#039;s being queried.
      </p>
     </dd>
    
    
     <dt><code class="parameter">table_name</code></dt>
     <dd>
      <p class="para">
       The name of the table that&#039;s being queried.
      </p>
     </dd>
    
    <dt>
<code class="parameter">link_identifier</code></dt><dd><p class="para">З&#039;єднання
MySQL. Якщо не задано, буде обрано останнє з&#039;єднання, встановлене функцією
<span class="function"><a href="function.mysql-connect.php" class="function">mysql_connect()</a></span>. Якщо з&#039;єднатися не вдалось, функція
спробує встановити нове, ніби викликавши функцію
<span class="function"><a href="function.mysql-connect.php" class="function">mysql_connect()</a></span> без параметрів. Якщо з&#039;єднання не
вдалося знайти або встановити, буде виведено повідомлення рівня
<strong><code><a href="errorfunc.constants.php#constant.e-warning">E_WARNING</a></code></strong></p></dd>
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.mysql-list-fields-returnvalues">
  <h3 class="title">Значення, що повертаються</h3>
  <p class="para">
   A result pointer <span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> on success, or <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> on
   failure.
  </p>
  <p class="para">
   The returned result can be used with <span class="function"><a href="function.mysql-field-flags.php" class="function">mysql_field_flags()</a></span>,
   <span class="function"><a href="function.mysql-field-len.php" class="function">mysql_field_len()</a></span>,
   <span class="function"><a href="function.mysql-field-name.php" class="function">mysql_field_name()</a></span> та
   <span class="function"><a href="function.mysql-field-type.php" class="function">mysql_field_type()</a></span>.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.mysql-list-fields-examples">
  <h3 class="title">Приклади</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Приклад #1 Alternate to deprecated <span class="function"><strong>mysql_list_fields()</strong></span></strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$result </span><span style="color: #007700">= </span><span style="color: #0000BB">mysql_query</span><span style="color: #007700">(</span><span style="color: #DD0000">"SHOW COLUMNS FROM sometable"</span><span style="color: #007700">);<br />if (!</span><span style="color: #0000BB">$result</span><span style="color: #007700">) {<br />    echo </span><span style="color: #DD0000">'Could not run query: ' </span><span style="color: #007700">. </span><span style="color: #0000BB">mysql_error</span><span style="color: #007700">();<br />    exit;<br />}<br />if (</span><span style="color: #0000BB">mysql_num_rows</span><span style="color: #007700">(</span><span style="color: #0000BB">$result</span><span style="color: #007700">) &gt; </span><span style="color: #0000BB">0</span><span style="color: #007700">) {<br />    while (</span><span style="color: #0000BB">$row </span><span style="color: #007700">= </span><span style="color: #0000BB">mysql_fetch_assoc</span><span style="color: #007700">(</span><span style="color: #0000BB">$result</span><span style="color: #007700">)) {<br />        </span><span style="color: #0000BB">print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">$row</span><span style="color: #007700">);<br />    }<br />}<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>Поданий вище приклад виведе щось
схоже на:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">Array
(
    [Field] =&gt; id
    [Type] =&gt; int(7)
    [Null] =&gt;  
    [Key] =&gt; PRI
    [Default] =&gt;
    [Extra] =&gt; auto_increment
)
Array
(
    [Field] =&gt; email
    [Type] =&gt; varchar(100)
    [Null] =&gt;
    [Key] =&gt;
    [Default] =&gt;
    [Extra] =&gt;
)</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 notes" id="refsect1-function.mysql-list-fields-notes">
  <h3 class="title">Примітки</h3>
  <blockquote class="note"><p><strong class="note">Зауваження</strong>: 
   <p class="para">
    Для зворотньої сумісності, можна використовувати такий застарілий псевдонім: 
    <span class="function"><strong>mysql_listfields()</strong></span>
   </p>
  </p></blockquote>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.mysql-list-fields-seealso">
  <h3 class="title">Прогляньте також</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.mysql-field-flags.php" class="function" rel="rdfs-seeAlso">mysql_field_flags()</a> - Get the flags associated with the specified field in a result</span></li>
    <li><span class="function"><a href="function.mysql-info.php" class="function" rel="rdfs-seeAlso">mysql_info()</a> - Get information about the most recent query</span></li>
   </ul>
  </p>
 </div>

</div><?php manual_footer($setup); ?>