<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.xattr.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'function.xattr-list.php',
    1 => 'xattr_list',
    2 => 'Get a list of extended attributes',
  ),
  'up' => 
  array (
    0 => 'ref.xattr.php',
    1 => 'xattr Functions',
  ),
  'prev' => 
  array (
    0 => 'function.xattr-get.php',
    1 => 'xattr_get',
  ),
  'next' => 
  array (
    0 => 'function.xattr-remove.php',
    1 => 'xattr_remove',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/xattr/functions/xattr-list.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.xattr-list" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">xattr_list</h1>
  <p class="verinfo">(PECL xattr &gt;= 0.9.0)</p><p class="refpurpose"><span class="refname">xattr_list</span> &mdash; <span class="dc-title">
   Get a list of extended attributes
  </span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.xattr-list-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>xattr_list</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="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$flags</code><span class="initializer"> = 0</span></span>): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="para rdfs-comment">
   This functions gets a list of names of extended attributes of a file. 
  </p>
  <p class="para">Extended attributes have two different namespaces: user
and root. The user namespace is available to all users, while the root namespace
is available only to users with root privileges. xattr operates on the user
namespace  by default, but this can be changed with the
<code class="parameter">flags</code> parameter.</p>
 </div>

 <div class="refsect1 parameters" id="refsect1-function.xattr-list-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">filename</code></dt>
     <dd>
      <p class="para">
       The path of the file.
      </p>
     </dd>
    
    
     <dt><code class="parameter">flags</code></dt>
     <dd>
      <p class="para">
       <table class="doctable table">
        <caption><strong>Supported xattr flags</strong></caption>
        
         <tbody class="tbody">
          <tr>
           <td><strong><code><a href="xattr.constants.php#constant.xattr-dontfollow">XATTR_DONTFOLLOW</a></code></strong></td>
           <td>Do not follow the symbolic link but operate on symbolic link itself.</td>
          </tr>

          <tr>
           <td><strong><code><a href="xattr.constants.php#constant.xattr-root">XATTR_ROOT</a></code></strong></td>
           <td>Set attribute in root (trusted) namespace. Requires root privileges.</td>
          </tr>

         </tbody>
        
       </table>

      </p>
     </dd>
    
   </dl>
  </p>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-function.xattr-list-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   This function returns an array with names of extended attributes. 
  </p>
 </div>

 <div class="refsect1 examples" id="refsect1-function.xattr-list-examples">
  <h3 class="title">Examples</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Example #1 Prints names of all extended attributes of file</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$file </span><span style="color: #007700">= </span><span style="color: #DD0000">'some_file'</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$root_attributes </span><span style="color: #007700">= </span><span style="color: #0000BB">xattr_list</span><span style="color: #007700">(</span><span style="color: #0000BB">$file</span><span style="color: #007700">, </span><span style="color: #0000BB">XATTR_ROOT</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$user_attributes </span><span style="color: #007700">= </span><span style="color: #0000BB">xattr_list</span><span style="color: #007700">(</span><span style="color: #0000BB">$file</span><span style="color: #007700">);<br /><br />echo </span><span style="color: #DD0000">"Root attributes: \n"</span><span style="color: #007700">;<br />foreach (</span><span style="color: #0000BB">$root_attributes </span><span style="color: #007700">as </span><span style="color: #0000BB">$attr_name</span><span style="color: #007700">) {<br />    </span><span style="color: #0000BB">printf</span><span style="color: #007700">(</span><span style="color: #DD0000">"%s\n"</span><span style="color: #007700">, </span><span style="color: #0000BB">$attr_name</span><span style="color: #007700">);<br />}<br /><br />echo </span><span style="color: #DD0000">"\n User attributes: \n"</span><span style="color: #007700">;<br />foreach (</span><span style="color: #0000BB">$attributes </span><span style="color: #007700">as </span><span style="color: #0000BB">$attr_name</span><span style="color: #007700">) {<br />    </span><span style="color: #0000BB">printf</span><span style="color: #007700">(</span><span style="color: #DD0000">"%s\n"</span><span style="color: #007700">, </span><span style="color: #0000BB">$attr_name</span><span style="color: #007700">);<br />}<br /><br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

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

 <div class="refsect1 seealso" id="refsect1-function.xattr-list-seealso">
  <h3 class="title">See Also</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.xattr-get.php" class="function" rel="rdfs-seeAlso">xattr_get()</a> - Get an extended attribute</span></li>
   </ul>
  </p>
 </div>

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