<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.solrclient.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'solrclient.deletebyid.php',
    1 => 'SolrClient::deleteById',
    2 => 'Delete by Id',
  ),
  'up' => 
  array (
    0 => 'class.solrclient.php',
    1 => 'SolrClient',
  ),
  'prev' => 
  array (
    0 => 'solrclient.construct.php',
    1 => 'SolrClient::__construct',
  ),
  'next' => 
  array (
    0 => 'solrclient.deletebyids.php',
    1 => 'SolrClient::deleteByIds',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/solr/solrclient/deletebyid.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="solrclient.deletebyid" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">SolrClient::deleteById</h1>
  <p class="verinfo">(PECL solr &gt;= 0.9.2)</p><p class="refpurpose"><span class="refname">SolrClient::deleteById</span> &mdash; <span class="dc-title">Delete by Id</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-solrclient.deletebyid-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>SolrClient::deleteById</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$id</code></span>): <span class="type"><a href="class.solrupdateresponse.php" class="type SolrUpdateResponse">SolrUpdateResponse</a></span></div>

  <p class="para rdfs-comment">
   Deletes the document with the specified ID. Where ID is the value of the uniqueKey field declared in the schema
  </p>

 </div>


 <div class="refsect1 parameters" id="refsect1-solrclient.deletebyid-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">id</code></dt>
     <dd>
      <p class="para">
       The value of the uniqueKey field declared in the schema
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-solrclient.deletebyid-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   Returns a <span class="type"><a href="class.solrupdateresponse.php" class="type SolrUpdateResponse">SolrUpdateResponse</a></span> on success and throws an exception on failure.
  </p>
 </div>

 
 <div class="refsect1 errors" id="refsect1-solrclient.deletebyid-errors">
  <h3 class="title">Hatalar/İstisnalar</h3>
  <p class="para">
   Throws <span class="classname"><a href="class.solrclientexception.php" class="classname">SolrClientException</a></span> if the client had failed, or there was a connection issue.
  </p>
  <p class="para">
   Throws <span class="classname"><a href="class.solrserverexception.php" class="classname">SolrServerException</a></span> if the Solr Server had failed to process the request.
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-solrclient.deletebyid-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="methodname"><a href="solrclient.deletebyids.php" class="methodname" rel="rdfs-seeAlso">SolrClient::deleteByIds()</a> - Deletes by Ids</span></li>
    <li><span class="methodname"><a href="solrclient.deletebyquery.php" class="methodname" rel="rdfs-seeAlso">SolrClient::deleteByQuery()</a> - Deletes all documents matching the given query</span></li>
    <li><span class="methodname"><a href="solrclient.deletebyqueries.php" class="methodname" rel="rdfs-seeAlso">SolrClient::deleteByQueries()</a> - Removes all documents matching any of the queries</span></li>
   </ul>
  </p>
 </div>


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