<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.sqlite3stmt.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ru',
  ),
  'this' => 
  array (
    0 => 'sqlite3stmt.clear.php',
    1 => 'SQLite3Stmt::clear',
    2 => 'Удаляет все текущие привязанные параметры',
  ),
  'up' => 
  array (
    0 => 'class.sqlite3stmt.php',
    1 => 'SQLite3Stmt',
  ),
  'prev' => 
  array (
    0 => 'sqlite3stmt.bindvalue.php',
    1 => 'SQLite3Stmt::bindValue',
  ),
  'next' => 
  array (
    0 => 'sqlite3stmt.close.php',
    1 => 'SQLite3Stmt::close',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ru',
    'path' => 'reference/sqlite3/sqlite3stmt/clear.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="sqlite3stmt.clear" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">SQLite3Stmt::clear</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.3.0, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">SQLite3Stmt::clear</span> &mdash; <span class="dc-title">Удаляет все текущие привязанные параметры</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-sqlite3stmt.clear-description">
  <h3 class="title">Описание</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>SQLite3Stmt::clear</strong></span>(): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <p class="para rdfs-comment">
   Удаляет все текущие привязанные параметры (устанавливает их на значение <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong>).
  </p>
  <div class="caution"><strong class="caution">Предостережение</strong>
   <p class="para">
    Метод необходимо использовать с <span class="methodname"><a href="sqlite3stmt.reset.php" class="methodname">SQLite3Stmt::reset()</a></span>.
    Если используется один, любой вызов <span class="methodname"><a href="sqlite3stmt.bindvalue.php" class="methodname">SQLite3Stmt::bindValue()</a></span>
    или <span class="methodname"><a href="sqlite3stmt.bindparam.php" class="methodname">SQLite3Stmt::bindParam()</a></span> не будет иметь никакого эффекта,
    и все привязанные параметры будут иметь значение <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong>.
   </p>
  </div>
 </div>


 <div class="refsect1 parameters" id="refsect1-sqlite3stmt.clear-parameters">
  <h3 class="title">Список параметров</h3>
  
<p class="para">
 Сигнатура функции не содержит параметров.
</p>

 </div>


 <div class="refsect1 returnvalues" id="refsect1-sqlite3stmt.clear-returnvalues">
  <h3 class="title">Возвращаемые значения</h3>
  <p class="para">
   Возвращает <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> в случае успешной очистки привязанных параметров и <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> в случае возникновения ошибки.
  </p>
 </div>


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