<?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-insert-id.php',
    1 => 'mysql_insert_id',
    2 => 'Get the ID generated in the last query',
  ),
  'up' => 
  array (
    0 => 'ref.mysql.php',
    1 => 'MySQL Функції',
  ),
  'prev' => 
  array (
    0 => 'function.mysql-info.php',
    1 => 'mysql_info',
  ),
  'next' => 
  array (
    0 => 'function.mysql-list-dbs.php',
    1 => 'mysql_list_dbs',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/mysql/functions/mysql-insert-id.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.mysql-insert-id" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">mysql_insert_id</h1>
  <p class="verinfo">(PHP 4, PHP 5)</p><p class="refpurpose"><span class="refname">mysql_insert_id</span> &mdash; <span class="dc-title">Get the ID generated in the last query</span></p>

 </div>

 <div id="function.mysql-insert-id-refsynopsisdiv">
  <div class="warning"><strong class="warning">Увага</strong>
   <p class="para">Це розширення застаріле, починаючи
з PHP 5.5.0, та вилучене з 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><span class="function"><a href="mysqli.insert-id.php" class="function">mysqli_insert_id()</a></span></li>
    <li><span class="methodname"><a href="pdo.lastinsertid.php" class="methodname">PDO::lastInsertId()</a></span></li>
   </ul>
  </div>
 </div>

 <div class="refsect1 description" id="refsect1-function.mysql-insert-id-description">
  <h3 class="title">Опис</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>mysql_insert_id</strong></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.integer.php" class="type int">int</a></span></div>

  <p class="para rdfs-comment">
   Retrieves the ID generated for an AUTO_INCREMENT column by the previous 
   query (usually INSERT).
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.mysql-insert-id-parameters">
  <h3 class="title">Параметри</h3>
  <p class="para">
   <dl>
    <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-insert-id-returnvalues">
  <h3 class="title">Значення, що повертаються</h3>
  <p class="para">
   The ID generated for an AUTO_INCREMENT column by the previous 
   query on success, <code class="literal">0</code> if the previous
   query does not generate an AUTO_INCREMENT value, or <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> if
   no MySQL connection was established.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.mysql-insert-id-examples">
  <h3 class="title">Приклади</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Приклад #1 <span class="function"><strong>mysql_insert_id()</strong></span> example</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$link </span><span style="color: #007700">= </span><span style="color: #0000BB">mysql_connect</span><span style="color: #007700">(</span><span style="color: #DD0000">'localhost'</span><span style="color: #007700">, </span><span style="color: #DD0000">'mysql_user'</span><span style="color: #007700">, </span><span style="color: #DD0000">'mysql_password'</span><span style="color: #007700">);<br />if (!</span><span style="color: #0000BB">$link</span><span style="color: #007700">) {<br />    die(</span><span style="color: #DD0000">'Could not connect: ' </span><span style="color: #007700">. </span><span style="color: #0000BB">mysql_error</span><span style="color: #007700">());<br />}<br /></span><span style="color: #0000BB">mysql_select_db</span><span style="color: #007700">(</span><span style="color: #DD0000">'mydb'</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">mysql_query</span><span style="color: #007700">(</span><span style="color: #DD0000">"INSERT INTO mytable (product) values ('kossu')"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">printf</span><span style="color: #007700">(</span><span style="color: #DD0000">"Last inserted record has id %d\n"</span><span style="color: #007700">, </span><span style="color: #0000BB">mysql_insert_id</span><span style="color: #007700">());<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

   </div>
  </p>
 </div>


 <div class="refsect1 notes" id="refsect1-function.mysql-insert-id-notes">
  <h3 class="title">Примітки</h3>
  <div class="caution"><strong class="caution">Застереження</strong>
   <p class="para">
    <span class="function"><strong>mysql_insert_id()</strong></span> will convert the return type of the
    native MySQL C API function <code class="literal">mysql_insert_id()</code> to a type
    of <code class="literal">long</code> (named <span class="type"><a href="language.types.integer.php" class="type int">int</a></span> in PHP). If your
    AUTO_INCREMENT column has a column type of BIGINT (64 bits) the
    conversion may result in an incorrect value. Instead, use the internal
    MySQL SQL function LAST_INSERT_ID() in an SQL query. For more information
    about PHP&#039;s maximum integer values, please see the
    <a href="language.types.integer.php" class="link">integer</a> documentation.
   </p>
  </div>
  <blockquote class="note"><p><strong class="note">Зауваження</strong>: 
   <p class="para">
    Because <span class="function"><strong>mysql_insert_id()</strong></span> acts on the last performed
    query, be sure to call <span class="function"><strong>mysql_insert_id()</strong></span> immediately 
    after the query that generates the value.
   </p>
  </p></blockquote>
  <blockquote class="note"><p><strong class="note">Зауваження</strong>: 
   <p class="para">
    The value of the MySQL SQL function
    <code class="literal">LAST_INSERT_ID()</code> always contains the most
    recently generated AUTO_INCREMENT value, and is not reset
    between queries.
  </p>
  </p></blockquote>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.mysql-insert-id-seealso">
  <h3 class="title">Прогляньте також</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.mysql-query.php" class="function" rel="rdfs-seeAlso">mysql_query()</a> - Send a MySQL query</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); ?>