<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.pharfileinfo.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'pharfileinfo.setmetadata.php',
    1 => 'PharFileInfo::setMetadata',
    2 => 'Sets file-specific meta-data saved with a file',
  ),
  'up' => 
  array (
    0 => 'class.pharfileinfo.php',
    1 => 'PharFileInfo',
  ),
  'prev' => 
  array (
    0 => 'pharfileinfo.iscompressed.php',
    1 => 'PharFileInfo::isCompressed',
  ),
  'next' => 
  array (
    0 => 'class.pharexception.php',
    1 => 'PharException',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/phar/PharFileInfo/setMetadata.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="pharfileinfo.setmetadata" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">PharFileInfo::setMetadata</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.3.0, PHP 7, PHP 8, PECL phar &gt;= 1.0.0)</p><p class="refpurpose"><span class="refname">PharFileInfo::setMetadata</span> &mdash; <span class="dc-title">Sets file-specific meta-data saved with a file</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-pharfileinfo.setmetadata-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>PharFileInfo::setMetadata</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.mixed.php" class="type mixed">mixed</a></span> <code class="parameter">$metadata</code></span>): <span class="type"><a href="language.types.void.php" class="type void">void</a></span></div>


  <p class="para rdfs-comment">
   <span class="function"><strong>PharFileInfo::setMetadata()</strong></span> should only be used to store customized data in a file
   that cannot be represented with existing information stored with a file.
   Meta-data can significantly slow down the performance of loading a phar
   archive if the data is large, or if there are many files containing meta-data.
   It is important to note that file permissions are natively supported inside a
   phar; it is possible to set them with the
   <span class="function"><a href="pharfileinfo.chmod.php" class="function">PharFileInfo::chmod()</a></span> method.  As with all functionality that modifies the contents of
   a phar, the <a href="phar.configuration.php#ini.phar.readonly" class="link">phar.readonly</a> INI variable
   must be off in order to succeed if the file is within a <span class="classname"><a href="class.phar.php" class="classname">Phar</a></span>
   archive.  Files within <span class="classname"><a href="class.phardata.php" class="classname">PharData</a></span> archives do not have
   this restriction.
  </p>
  <p class="para">
   Some possible uses for meta-data include passing a user/group that should be set
   when a file is extracted from the phar to disk.  Other uses could include
   explicitly specifying a MIME type to return.  However, any useful data that
   describes a file, but should not be contained inside of it may be stored.
  </p>

 </div>


 <div class="refsect1 parameters" id="refsect1-pharfileinfo.setmetadata-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">metadata</code></dt>
     <dd>
      <p class="para">
       Any PHP variable containing information to store alongside a file
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-pharfileinfo.setmetadata-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   Hiçbir değer dönmez.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-pharfileinfo.setmetadata-examples">
  <h3 class="title">Örnekler</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Örnek 1 A <span class="function"><strong>PharFileInfo::setMetadata()</strong></span> example</strong></p>
    <div class="example-contents"><p>
    </p></div>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /></span><span style="color: #FF8000">// make sure it doesn't exist<br /></span><span style="color: #007700">@</span><span style="color: #0000BB">unlink</span><span style="color: #007700">(</span><span style="color: #DD0000">'brandnewphar.phar'</span><span style="color: #007700">);<br />try {<br />    </span><span style="color: #0000BB">$p </span><span style="color: #007700">= new </span><span style="color: #0000BB">Phar</span><span style="color: #007700">(</span><span style="color: #0000BB">dirname</span><span style="color: #007700">(</span><span style="color: #0000BB">__FILE__</span><span style="color: #007700">) . </span><span style="color: #DD0000">'/brandnewphar.phar'</span><span style="color: #007700">, </span><span style="color: #0000BB">0</span><span style="color: #007700">, </span><span style="color: #DD0000">'brandnewphar.phar'</span><span style="color: #007700">);<br />    </span><span style="color: #0000BB">$p</span><span style="color: #007700">[</span><span style="color: #DD0000">'file.txt'</span><span style="color: #007700">] = </span><span style="color: #DD0000">'hello'</span><span style="color: #007700">;<br />    </span><span style="color: #0000BB">$p</span><span style="color: #007700">[</span><span style="color: #DD0000">'file.txt'</span><span style="color: #007700">]-&gt;</span><span style="color: #0000BB">setMetadata</span><span style="color: #007700">(array(</span><span style="color: #DD0000">'user' </span><span style="color: #007700">=&gt; </span><span style="color: #DD0000">'bill'</span><span style="color: #007700">, </span><span style="color: #DD0000">'mime-type' </span><span style="color: #007700">=&gt; </span><span style="color: #DD0000">'text/plain'</span><span style="color: #007700">));<br />    </span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$p</span><span style="color: #007700">[</span><span style="color: #DD0000">'file.txt'</span><span style="color: #007700">]-&gt;</span><span style="color: #0000BB">getMetaData</span><span style="color: #007700">());<br />} catch (</span><span style="color: #0000BB">Exception $e</span><span style="color: #007700">) {<br />    echo </span><span style="color: #DD0000">'Could not create/modify phar: '</span><span style="color: #007700">, </span><span style="color: #0000BB">$e</span><span style="color: #007700">;<br />}<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(2) {
  [&quot;user&quot;]=&gt;
  string(4) &quot;bill&quot;
  [&quot;mime-type&quot;]=&gt;
  string(10) &quot;text/plain&quot;
}</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-pharfileinfo.setmetadata-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="pharfileinfo.hasmetadata.php" class="function" rel="rdfs-seeAlso">PharFileInfo::hasMetadata()</a> - Returns the metadata of the entry</span></li>
    <li><span class="function"><a href="pharfileinfo.getmetadata.php" class="function" rel="rdfs-seeAlso">PharFileInfo::getMetadata()</a> - Returns file-specific meta-data saved with a file</span></li>
    <li><span class="function"><a href="pharfileinfo.delmetadata.php" class="function" rel="rdfs-seeAlso">PharFileInfo::delMetadata()</a> - Deletes the metadata of the entry</span></li>
    <li><span class="function"><a href="phar.setmetadata.php" class="function" rel="rdfs-seeAlso">Phar::setMetadata()</a> - Sets phar archive meta-data</span></li>
    <li><span class="function"><a href="phar.hasmetadata.php" class="function" rel="rdfs-seeAlso">Phar::hasMetadata()</a> - Returns whether phar has global meta-data</span></li>
    <li><span class="function"><a href="phar.getmetadata.php" class="function" rel="rdfs-seeAlso">Phar::getMetadata()</a> - Returns phar archive meta-data</span></li>
   </ul>
  </p>
 </div>


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