downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Our source is open

The syntax highlighted source is automatically generated by PHP from the plaintext script. If you're interested in what's behind the several functions we used, you can always take a look at the source of the following files:

Of course, if you want to see the source of this page, we have it available. You can also browse the Git repository for this website on git.php.net.

Source of: /manual/ro/function.mysql-info.php

<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = 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 => 'ro',
  ),
 
'this' =>
  array (
   
0 => 'function.mysql-info.php',
   
1 => 'mysql_info',
  ),
 
'up' =>
  array (
   
0 => 'ref.mysql.php',
   
1 => 'Funcții MySQL',
  ),
 
'prev' =>
  array (
   
0 => 'function.mysql-get-server-info.php',
   
1 => 'mysql_get_server_info',
  ),
 
'next' =>
  array (
   
0 => 'function.mysql-insert-id.php',
   
1 => 'mysql_insert_id',
  ),
 
'alternatives' =>
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);

manual_header();
?>
<div id="function.mysql-info" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">mysql_info</h1>
  <p class="verinfo">(PHP 4 &gt;= 4.3.0, PHP 5)</p><p class="refpurpose"><span class="refname">mysql_info</span> &mdash; <span class="dc-title">Get information about the most recent query</span></p>

 </div>

 <div id="function.mysql-info-refsynopsisdiv">
  <div class="warning"><strong class="warning">Avertizare</strong>
   <p class="para">
Această extensie este dezaprobată începând cu PHP 5.5.0 și va fi eliminată în
viitor. În locul ei trebuie utilizate extensiile <a href="book.mysqli.php" class="link">MySQLi</a>
sau <a href="ref.pdo-mysql.php" class="link">PDO_MySQL</a>. Vedeți de asemenea ghidul
<a href="mysqlinfo.api.choosing.php" class="link">MySQL: selectarea unei API</a> și
<a href="faq.databases.php#faq.databases.mysql.deprecated" class="link">FAQ asociat</a> pentru mai
multe informații. Alternative ale acestei funcții includ:</p>
   <ul class="simplelist">
    <li class="member"> <span class="function"><a href="mysqli.info.php" class="function">mysqli_info()</a></span></li>
   </ul>
  </div>
 </div>

 <div class="refsect1 description" id="refsect1-function.mysql-info-description">
  <h3 class="title">Descrierea</h3>
  <div class="methodsynopsis dc-description">
   <span class="type">string</span> <span class="methodname"><strong>mysql_info</strong></span>
    ([ <span class="methodparam"><span class="type">resource</span> <code class="parameter">$link_identifier</code><span class="initializer"> = NULL</span></span>
  ] )</div>

  <p class="para rdfs-comment">
   Returns detailed information about the last query.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.mysql-info-parameters">
  <h3 class="title">Parametri</h3>
  <p class="para">
   <dl>

    <dt>
<span class="term"><em><code class="parameter">link_identifier
</code></em></span><dd>
<p class="para">Conexiunea MySQL. Dacă identificatorul
legăturii nu este specificat, se presupune că este ultima legătură deschisă cu
ajutorul  <span class="function"><a href="function.mysql-connect.php" class="function">mysql_connect()</a></span>. Dacă nu este găsită nici o astfel
de legătură, se va încerca crearea uneia prin apelul  <span class="function"><strong>mysql_connect
()</strong></span> fără argumente. În caz că nici o conexiune nu este găsită sau
stabilită, se va genera o eroare de nivelul <strong><code>E_WARNING</code></strong>.
</p></dd>
</dt>

   </dl>

  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.mysql-info-returnvalues">
  <h3 class="title">Valorile întoarse</h3>
  <p class="para">
   Returns information about the statement on success, or <strong><code>FALSE</code></strong> on
   failure. See the example below for which statements provide information,
   and what the returned value may look like. Statements that are not listed
   will return <strong><code>FALSE</code></strong>.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.mysql-info-examples">
  <h3 class="title">Exemple</h3>
  <p class="para">
   <div class="example" id="example-1655">
    <p><strong>Example #1 Relevant MySQL Statements</strong></p>
    <div class="example-contents"><p>
     Statements that return string values. The numbers are only for
     illustrating purpose; their values will correspond to the query.
    </p></div>
    <div class="example-contents">
<div class="mysqlcode"><pre class="mysqlcode">INSERT INTO ... SELECT ...
String format: Records: 23 Duplicates: 0 Warnings: 0
INSERT INTO ... VALUES (...),(...),(...)...
String format: Records: 37 Duplicates: 0 Warnings: 0
LOAD DATA INFILE ...
String format: Records: 42 Deleted: 0 Skipped: 0 Warnings: 0
ALTER TABLE
String format: Records: 60 Duplicates: 0 Warnings: 0
UPDATE
String format: Rows matched: 65 Changed: 65 Warnings: 0</pre>
</div>
    </div>

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

 
 <div class="refsect1 notes" id="refsect1-function.mysql-info-notes">
  <h3 class="title">Note</h3>
  <blockquote class="note"><p><strong class="note">Notă</strong>:
   <p class="para">
     <span class="function"><strong>mysql_info()</strong></span> returns a non-<strong><code>FALSE</code></strong> value for the
    INSERT ... VALUES statement only if multiple value lists are
    specified in the statement.
   </p>
  </p></blockquote>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.mysql-info-seealso">
  <h3 class="title">Vedeți de asemenea</h3>
  <p class="para">
   <ul class="simplelist">
    <li class="member"> <span class="function"><a href="function.mysql-affected-rows.php" class="function" rel="rdfs-seeAlso">mysql_affected_rows()</a> - Obține numărul de r&acirc;nduri afectate de precedenta operațiune MySQL</span></li>
    <li class="member"> <span class="function"><a href="function.mysql-insert-id.php" class="function" rel="rdfs-seeAlso">mysql_insert_id()</a> - Get the ID generated in the last query</span></li>
    <li class="member"> <span class="function"><a href="function.mysql-stat.php" class="function" rel="rdfs-seeAlso">mysql_stat()</a> - Get current system status</span></li>
   </ul>
  </p>
 </div>

</div><?php manual_footer(); ?>
 
show source | credits | sitemap | contact | advertising | mirror sites