<?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 => 'zh',
  ),
  'this' => 
  array (
    0 => 'sqlite3stmt.readonly.php',
    1 => 'SQLite3Stmt::readOnly',
    2 => 'Returns whether a statement is definitely read only',
  ),
  'up' => 
  array (
    0 => 'class.sqlite3stmt.php',
    1 => 'SQLite3Stmt',
  ),
  'prev' => 
  array (
    0 => 'sqlite3stmt.paramcount.php',
    1 => 'SQLite3Stmt::paramCount',
  ),
  'next' => 
  array (
    0 => 'sqlite3stmt.reset.php',
    1 => 'SQLite3Stmt::reset',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/sqlite3/sqlite3stmt/readonly.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="sqlite3stmt.readonly" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">SQLite3Stmt::readOnly</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.3.6, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">SQLite3Stmt::readOnly</span> &mdash; <span class="dc-title">Returns whether a statement is definitely read only</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-sqlite3stmt.readonly-description">
  <h3 class="title">说明</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>SQLite3Stmt::readOnly</strong></span>(): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <p class="para rdfs-comment">
   Returns whether a statement is definitely read only. A statement is
   considered read only, if it makes no <em>direct</em> changes to
   the content of the database file. Note that user defined SQL functions might
   change the database <em>indirectly</em> as a side effect.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-sqlite3stmt.readonly-parameters">
  <h3 class="title">参数</h3>
  <p class="para">此函数没有参数。</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-sqlite3stmt.readonly-returnvalues">
  <h3 class="title">返回值</h3>
  <p class="para">
   Returns <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> if a statement is definitely read only, <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> otherwise.
  </p>
 </div>


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