<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.filesystem.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'function.filectime.php',
    1 => 'filectime',
    2 => 'Prende l\'ora in cui l\'inode del file &egrave; stato modificato',
  ),
  'up' => 
  array (
    0 => 'ref.filesystem.php',
    1 => 'Filesystem Funzioni',
  ),
  'prev' => 
  array (
    0 => 'function.fileatime.php',
    1 => 'fileatime',
  ),
  'next' => 
  array (
    0 => 'function.filegroup.php',
    1 => 'filegroup',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'it',
    'path' => 'reference/filesystem/functions/filectime.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.filectime" class="refentry">
   <div class="refnamediv">
    <h1 class="refname">filectime</h1>
    <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">filectime</span> &mdash; <span class="dc-title">Prende l&#039;ora in cui l&#039;inode del file è stato modificato</span></p>

   </div>
   <div class="refsect1 unknown-574" id="refsect1-function.filectime-unknown-574">
    <h3 class="title">Descrizione</h3>
     <div class="methodsynopsis dc-description">
      <span class="methodname"><strong>filectime</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$filename</code></span>): <span class="type"><a href="language.types.integer.php" class="type int">int</a></span></div>

    <p class="para rdfs-comment">
     Restituisce l&#039;ora in cui il file è stato cambiato l&#039;ultima volta o <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> in 
     caso d&#039;errore. L&#039;ora viene restituita come un timestamp di Unix.
    </p>
    <p class="para">
     Nota: In molti filesystem Unix, si considera un file modificato, quando il 
     suo inode viene cambiato; cioè quando i permessi, il proprietario, il gruppo
     o altri metadata dell&#039;inode vengono aggiornati. Vedere anche 
     <span class="function"><a href="function.filemtime.php" class="function">filemtime()</a></span> (che è ciò che ti serve se vuoi inserire la 
     scritta &quot;Ultima modifica: &quot; nel piede delle tue pagine web) e 
     <span class="function"><a href="function.fileatime.php" class="function">fileatime()</a></span>.
    </p>
    <p class="para">
     Sappi anche che in alcuni testi su Unix si fa riferimento al ctime di
     un file come l&#039;ora di creazione dello stesso. E&#039; sbagliato.
     Nella maggioranza dei filesystem Unix non esiste un oa di creazione.
    </p>
    <blockquote class="note"><p><strong class="note">Nota</strong>: <span class="simpara">I risultati di questa funzione 
saranno memorizzati. Vedere <span class="function"><a href="function.clearstatcache.php" class="function">clearstatcache()</a></span> per  
maggiori dettagli.</span></p></blockquote>
    <div class="tip"><strong class="tip">Suggerimento</strong><p class="simpara">A partire da <code class="literal">PHP 5.0.0</code>, questa funzione può essere utilizzata con
<em>alcuni</em> URL wrappers.  Fare riferimento a 
<a href="wrappers.php" class="xref">Supported Protocols and Wrappers</a> per la lista di quali wrappers supportano le funzioni della famiglia
<span class="function"><a href="function.stat.php" class="function">stat()</a></span>.</p></div>
 
    <p class="para">
     <div class="example" id="example-1">
      <p><strong>Example #1 Esempio di uso di <span class="function"><a href="function.fileatime.php" class="function">fileatime()</a></span></strong></p>
      <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /> <br /></span><span style="color: #FF8000">// Visualizza ad esempio:  somefile.txt è stato modificato: December 29 2002 22:16:23.<br /> <br /></span><span style="color: #0000BB">$filename </span><span style="color: #007700">= </span><span style="color: #DD0000">'somefile.txt'</span><span style="color: #007700">;<br />if (</span><span style="color: #0000BB">file_exists</span><span style="color: #007700">(</span><span style="color: #0000BB">$filename</span><span style="color: #007700">)) {<br />    echo </span><span style="color: #DD0000">"</span><span style="color: #0000BB">$filename</span><span style="color: #DD0000"> è stato modificato: " </span><span style="color: #007700">. </span><span style="color: #0000BB">date</span><span style="color: #007700">(</span><span style="color: #DD0000">"F d Y H:i:s."</span><span style="color: #007700">, </span><span style="color: #0000BB">filectime</span><span style="color: #007700">(</span><span style="color: #0000BB">$filename</span><span style="color: #007700">));<br />}<br /> <br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
      </div>

     </div>
    </p>
    <p class="simpara">
     Vedere anche <span class="function"><a href="function.filemtime.php" class="function">filemtime()</a></span>.    
    </p>
   </div>

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