<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.apcu.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'function.apcu-exists.php',
    1 => 'apcu_exists',
    2 => 'Checks if entry exists',
  ),
  'up' => 
  array (
    0 => 'ref.apcu.php',
    1 => 'APCu Funzioni',
  ),
  'prev' => 
  array (
    0 => 'function.apcu-entry.php',
    1 => 'apcu_entry',
  ),
  'next' => 
  array (
    0 => 'function.apcu-fetch.php',
    1 => 'apcu_fetch',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/apcu/functions/apcu-exists.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.apcu-exists" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">apcu_exists</h1>
  <p class="verinfo">(PECL apcu &gt;= 4.0.0)</p><p class="refpurpose"><span class="refname">apcu_exists</span> &mdash; <span class="dc-title">Checks if entry exists</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.apcu-exists-description">
  <h3 class="title">Descrizione</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>apcu_exists</strong></span>(<span class="methodparam"><span class="type"><span class="type"><a href="language.types.string.php" class="type string">string</a></span>|<span class="type"><a href="language.types.array.php" class="type array">array</a></span></span> <code class="parameter">$keys</code></span>): <span class="type"><span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span>|<span class="type"><a href="language.types.array.php" class="type array">array</a></span></span></div>

  <p class="simpara">
   Checks if one or more APCu entries exist.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.apcu-exists-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <dl>
   
    <dt><code class="parameter">keys</code></dt>
    <dd>
     <span class="simpara">
      A <span class="type"><a href="language.types.string.php" class="type string">string</a></span>, or an <span class="type"><a href="language.types.array.php" class="type array">array</a></span> of strings, that
      contain keys.
     </span>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.apcu-exists-returnvalues">
  <h3 class="title">Valori restituiti</h3>
  <p class="simpara">
   Returns <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> if the key exists, otherwise <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> Or if an
   <span class="type"><a href="language.types.array.php" class="type array">array</a></span> was passed to <code class="parameter">keys</code>, then
   an array is returned that contains all existing keys, or an empty
   array if none exist.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.apcu-exists-examples">
  <h3 class="title">Esempi</h3>
  <div class="example" id="example-1">
   <p><strong>Example #1 <span class="function"><strong>apcu_exists()</strong></span> example</strong></p>
   <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$fruit  </span><span style="color: #007700">= </span><span style="color: #DD0000">'apple'</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$veggie </span><span style="color: #007700">= </span><span style="color: #DD0000">'carrot'</span><span style="color: #007700">;<br /><br /></span><span style="color: #0000BB">apcu_store</span><span style="color: #007700">(</span><span style="color: #DD0000">'foo'</span><span style="color: #007700">, </span><span style="color: #0000BB">$fruit</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">apcu_store</span><span style="color: #007700">(</span><span style="color: #DD0000">'bar'</span><span style="color: #007700">, </span><span style="color: #0000BB">$veggie</span><span style="color: #007700">);<br /><br />if (</span><span style="color: #0000BB">apcu_exists</span><span style="color: #007700">(</span><span style="color: #DD0000">'foo'</span><span style="color: #007700">)) {<br />    echo </span><span style="color: #DD0000">"Foo exists: "</span><span style="color: #007700">;<br />    echo </span><span style="color: #0000BB">apcu_fetch</span><span style="color: #007700">(</span><span style="color: #DD0000">'foo'</span><span style="color: #007700">);<br />} else {<br />    echo </span><span style="color: #DD0000">"Foo does not exist"</span><span style="color: #007700">;<br />}<br /><br />echo </span><span style="color: #0000BB">PHP_EOL</span><span style="color: #007700">;<br />if (</span><span style="color: #0000BB">apcu_exists</span><span style="color: #007700">(</span><span style="color: #DD0000">'baz'</span><span style="color: #007700">)) {<br />    echo </span><span style="color: #DD0000">"Baz exists."</span><span style="color: #007700">;<br />} else {<br />    echo </span><span style="color: #DD0000">"Baz does not exist"</span><span style="color: #007700">;<br />}<br /><br />echo </span><span style="color: #0000BB">PHP_EOL</span><span style="color: #007700">;<br /><br /></span><span style="color: #0000BB">$ret </span><span style="color: #007700">= </span><span style="color: #0000BB">apcu_exists</span><span style="color: #007700">(array(</span><span style="color: #DD0000">'foo'</span><span style="color: #007700">, </span><span style="color: #DD0000">'donotexist'</span><span style="color: #007700">, </span><span style="color: #DD0000">'bar'</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$ret</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
   </div>

   <div class="example-contents"><p>Il precedente esempio visualizzerà
qualcosa simile a:</p></div>
   <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">Foo exists: apple
Baz does not exist
array(2) {
  [&quot;foo&quot;]=&gt;
  bool(true)
  [&quot;bar&quot;]=&gt;
  bool(true)
}</pre>
</div>
   </div>
  </div>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.apcu-exists-seealso">
  <h3 class="title">Vedere anche:</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.apcu-cache-info.php" class="function" rel="rdfs-seeAlso">apcu_cache_info()</a> - Retrieves cached information from APCu's data store</span></li>
   <li><span class="function"><a href="function.apcu-fetch.php" class="function" rel="rdfs-seeAlso">apcu_fetch()</a> - Fetch a stored variable from the cache</span></li>
  </ul>
 </div>

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