<?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 => 'es',
  ),
  'this' => 
  array (
    0 => 'function.lstat.php',
    1 => 'lstat',
    2 => 'Devuelve informaci&oacute;n sobre un fichero o un enlace simb&oacute;lico',
  ),
  'up' => 
  array (
    0 => 'ref.filesystem.php',
    1 => 'Funciones del Sistema de Archivos',
  ),
  'prev' => 
  array (
    0 => 'function.linkinfo.php',
    1 => 'linkinfo',
  ),
  'next' => 
  array (
    0 => 'function.mkdir.php',
    1 => 'mkdir',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'es',
    'path' => 'reference/filesystem/functions/lstat.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.lstat" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">lstat</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">lstat</span> &mdash; <span class="dc-title">Devuelve información sobre un fichero o un enlace simbólico</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.lstat-description">
  <h3 class="title">Descripción</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>lstat</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"><span class="type"><a href="language.types.array.php" class="type array">array</a></span>|<span class="type"><a href="language.types.singleton.php" class="type false">false</a></span></span></div>

  <p class="para rdfs-comment">
   Devuelve información sobre un fichero o un enlace simbólico.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.lstat-parameters">
  <h3 class="title">Parámetros</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">filename</code></dt>
     <dd>
      <p class="para">
       Ruta de acceso a un fichero o un enlace simbólico.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.lstat-returnvalues">
  <h3 class="title">Valores devueltos</h3>
  <p class="para">
   Consúltese la página del manual de <span class="function"><a href="function.stat.php" class="function">stat()</a></span> para obtener más información
   sobre la estructura del array devuelto por <span class="function"><strong>lstat()</strong></span>.
   Esta función es idéntica a la función <span class="function"><a href="function.stat.php" class="function">stat()</a></span> excepto
   que si <code class="parameter">filename</code> es un enlace simbólico, la información se basará en el enlace simbólico.
  </p>
  <p class="para">
   En caso de error, se devuelve <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>.
  </p>
 </div>


 <div class="refsect1 errors" id="refsect1-function.lstat-errors">
  <h3 class="title">Errores/Excepciones</h3>
  <p class="para">
En caso de fallo, se emitirá una advertencia de tipo <strong><code><a href="errorfunc.constants.php#constant.e-warning">E_WARNING</a></code></strong>.
</p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.lstat-examples">
  <h3 class="title">Ejemplos</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Ejemplo #1 Comparación entre <span class="function"><a href="function.stat.php" class="function">stat()</a></span> y <span class="function"><strong>lstat()</strong></span></strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />symlink</span><span style="color: #007700">(</span><span style="color: #DD0000">'uploads.php'</span><span style="color: #007700">, </span><span style="color: #DD0000">'uploads'</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">// Se destaca la diferencia de información<br /></span><span style="color: #0000BB">array_diff</span><span style="color: #007700">(</span><span style="color: #0000BB">stat</span><span style="color: #007700">(</span><span style="color: #DD0000">'uploads'</span><span style="color: #007700">), </span><span style="color: #0000BB">lstat</span><span style="color: #007700">(</span><span style="color: #DD0000">'uploads'</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>Resultado del ejemplo anterior es similar a:</p></div>
    <div class="example-contents"><p>
     Información que difiere entre los 2 ficheros.
    </p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">Array
(
    [ino] =&gt; 97236376
    [mode] =&gt; 33188
    [size] =&gt; 34
    [atime] =&gt; 1223580003
    [mtime] =&gt; 1223581848
    [ctime] =&gt; 1223581848
    [blocks] =&gt; 8
)</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 notes" id="refsect1-function.lstat-notes">
  <h3 class="title">Notas</h3>
  <blockquote class="note"><p><strong class="note">Nota</strong>: <span class="simpara">Los resultados de esta
función se almacenan en caché. Véase la función <span class="function"><a href="function.clearstatcache.php" class="function">clearstatcache()</a></span> para
más detalles.</span></p></blockquote>
  <div class="tip"><strong class="tip">Sugerencia</strong><p class="simpara">
 A partir de PHP 5.0.0, esta función también puede ser utilizada con <em>algunos</em> protocolos url.
 Lea <a href="wrappers.php" class="xref">Protocolos y Envolturas soportados</a> para conocer los protocolos que soportan la familia de funcionalidades de
 <span class="function"><a href="function.stat.php" class="function">stat()</a></span>.
</p></div>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.lstat-seealso">
  <h3 class="title">Ver también</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.stat.php" class="function" rel="rdfs-seeAlso">stat()</a> - Proporciona informaci&oacute;n sobre un fichero</span></li>
   </ul>
  </p>
 </div>


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