<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/cubridmysql.cubrid.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'function.cubrid-list-dbs.php',
    1 => 'cubrid_list_dbs',
    2 => 'Return an array with the list of all existing CUBRID databases',
  ),
  'up' => 
  array (
    0 => 'cubridmysql.cubrid.php',
    1 => 'CUBRID MySQL Compatibility Functions',
  ),
  'prev' => 
  array (
    0 => 'function.cubrid-field-type.php',
    1 => 'cubrid_field_type',
  ),
  'next' => 
  array (
    0 => 'function.cubrid-num-fields.php',
    1 => 'cubrid_num_fields',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/cubrid/cubridmysql/cubrid-list-dbs.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.cubrid-list-dbs" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">cubrid_list_dbs</h1>
  <p class="verinfo">(PECL CUBRID &gt;= 8.3.0)</p><p class="refpurpose"><span class="refname">cubrid_list_dbs</span> &mdash; <span class="dc-title">Return an array with the list of all existing CUBRID databases</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.cubrid-list-dbs-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>cubrid_list_dbs</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$conn_identifier</code><span class="initializer"> = ?</span></span>): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="simpara">
   This function returns an array with the list of all existing Cubrid
   databases.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.cubrid-list-dbs-parameters">
 <h3 class="title">Bağımsız Değişkenler</h3>
 <dl>
   
   <dt><code class="parameter">conn_identifier</code></dt>
   <dd><span class="simpara">The CUBRID connection.</span></dd>
  
 </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.cubrid-list-dbs-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="simpara">
   An numeric array with all existing Cubrid databases; on success.
  </p>
   <p class="simpara">
    <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> on failure.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.cubrid-list-dbs-examples">
  <h3 class="title">Örnekler</h3>
  <div class="example" id="example-1">
   <p><strong>Örnek 1 <span class="function"><strong>cubrid_list_dbs()</strong></span> example</strong></p>
   <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$conn </span><span style="color: #007700">= </span><span style="color: #0000BB">cubrid_connect</span><span style="color: #007700">(</span><span style="color: #DD0000">"localhost"</span><span style="color: #007700">, </span><span style="color: #0000BB">33000</span><span style="color: #007700">, </span><span style="color: #DD0000">"demodb"</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$db_list </span><span style="color: #007700">= </span><span style="color: #0000BB">cubrid_list_dbs</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$db_list</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">cubrid_disconnect</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
   </div>

    <div class="example-contents"><p>
Yukarıdaki örneğin çıktısı:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">array(1) {
  [0]=&gt;
  string(6) &quot;demodb&quot;
}</pre>
</div>
    </div>
  </div>
 </div>


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