<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.phardata.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'phardata.offsetunset.php',
    1 => 'PharData::offsetUnset',
    2 => 'Remove a file from a tar/zip archive',
  ),
  'up' => 
  array (
    0 => 'class.phardata.php',
    1 => 'PharData',
  ),
  'prev' => 
  array (
    0 => 'phardata.offsetset.php',
    1 => 'PharData::offsetSet',
  ),
  'next' => 
  array (
    0 => 'phardata.setalias.php',
    1 => 'PharData::setAlias',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/phar/PharData/offsetUnset.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="phardata.offsetunset" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">PharData::offsetUnset</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.3.0, PHP 7, PHP 8, PECL phar &gt;= 2.0.0)</p><p class="refpurpose"><span class="refname">PharData::offsetUnset</span> &mdash; <span class="dc-title">Remove a file from a tar/zip archive</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-phardata.offsetunset-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>PharData::offsetUnset</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$localName</code></span>): <span class="type"><a href="language.types.void.php" class="type void">void</a></span></div>



  <p class="para rdfs-comment">
   This is an implementation of the <span class="interfacename"><a href="class.arrayaccess.php" class="interfacename">ArrayAccess</a></span> interface allowing
   direct manipulation of the contents of a tar/zip archive using
   array access brackets.  offsetUnset is used for deleting an
   existing file, and is called by the <span class="function"><a href="function.unset.php" class="function">unset()</a></span>
   language construct.
  </p>

 </div>

 
 <div class="refsect1 parameters" id="refsect1-phardata.offsetunset-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">localName</code></dt>
     <dd>
      <p class="para">
       The filename (relative path) to modify in the tar/zip archive.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


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


 <div class="refsect1 errors" id="refsect1-phardata.offsetunset-errors">
  <h3 class="title">Hatalar/İstisnalar</h3>
  <p class="para">
   Throws
   <span class="classname"><a href="class.pharexception.php" class="classname">PharException</a></span> if there are any problems flushing
   changes made to the tar/zip archive to disk.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-phardata.offsetunset-examples">
  <h3 class="title">Örnekler</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Örnek 1 A <span class="function"><strong>PharData::offsetUnset()</strong></span> example</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br />$p </span><span style="color: #007700">= new </span><span style="color: #0000BB">PharData</span><span style="color: #007700">(</span><span style="color: #DD0000">'/path/to/my.zip'</span><span style="color: #007700">);<br />try {<br />    </span><span style="color: #FF8000">// deletes file.txt from my.zip by calling offsetUnset<br />    </span><span style="color: #007700">unset(</span><span style="color: #0000BB">$p</span><span style="color: #007700">[</span><span style="color: #DD0000">'file.txt'</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 delete file.txt: '</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>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-phardata.offsetunset-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="phar.offsetunset.php" class="function" rel="rdfs-seeAlso">Phar::offsetUnset()</a> - Remove a file from a phar</span></li>
   </ul>
  </p>
 </div>


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