downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Our source is open

The syntax highlighted source is automatically generated by PHP from the plaintext script. If you're interested in what's behind the several functions we used, you can always take a look at the source of the following files:

Of course, if you want to see the source of this page, we have it available. You can also browse the Git repository for this website on git.php.net.

Source of: /manual/ja/function.cubrid-get-query-timeout.php

<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once
dirname(__FILE__) ."/toc/ref.cubrid.inc";
$setup = array (
 
'home' =>
  array (
   
0 => 'index.php',
   
1 => 'PHP Manual',
  ),
 
'head' =>
  array (
   
0 => 'UTF-8',
   
1 => 'ja',
  ),
 
'this' =>
  array (
   
0 => 'function.cubrid-get-query-timeout.php',
   
1 => 'cubrid_get_query_timeout',
  ),
 
'up' =>
  array (
   
0 => 'ref.cubrid.php',
   
1 => 'CUBRID 関数',
  ),
 
'prev' =>
  array (
   
0 => 'function.cubrid-get-db-parameter.php',
   
1 => 'cubrid_get_db_parameter',
  ),
 
'next' =>
  array (
   
0 => 'function.cubrid-get-server-info.php',
   
1 => 'cubrid_get_server_info',
  ),
 
'alternatives' =>
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);

manual_header();
?>
<div id="function.cubrid-get-query-timeout" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">cubrid_get_query_timeout</h1>
  <p class="verinfo">(PECL CUBRID &gt;= 8.4.1)</p><p class="refpurpose"><span class="refname">cubrid_get_query_timeout</span> &mdash; <span class="dc-title">Get the query timeout value of the request</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.cubrid-get-query-timeout-description">
  <h3 class="title">説明</h3>
  <div class="methodsynopsis dc-description">
   <span class="type">int</span> <span class="methodname"><strong>cubrid_get_query_timeout</strong></span>
    ( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$req_identifier</code></span>
   )</div>

  <p class="para rdfs-comment">
   The  <span class="function"><strong>cubrid_get_query_timeout()</strong></span> function is used to get
   the query timeout of the request.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.cubrid-get-query-timeout-parameters">
 <h3 class="title">パラメータ</h3>
 <p class="para">
  <dl>

    <dt>

  <span class="term"><em><code class="parameter">req_identifier</code></em></span>
  <dd>
<p class="para">Request identifier.</p></dd>

   </dt>

  </dl>

  </p>
 </div>


  <div class="refsect1 returnvalues" id="refsect1-function.cubrid-get-query-timeout-returnvalues">
  <h3 class="title">返り値</h3>
  <p class="para">
   Success: the query timeout value of the current request. Units of msec.
  </p>
  <p class="para">
   Failure: FALSE
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.cubrid-get-query-timeout-examples">
  <h3 class="title">例</h3>
  <div class="example" id="example-1089">
   <p><strong>例1  <span class="function"><strong>cubrid_get_query_timeout()</strong></span> example</strong></p>
   <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br /><br />$host&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">"localhost"</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$port&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">33000</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$db&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">"demodb"</span><span style="color: #007700">;<br /><br /></span><span style="color: #0000BB">$conn&nbsp;</span><span style="color: #007700">=<br /></span><span style="color: #0000BB">cubrid_connect_with_url</span><span style="color: #007700">(</span><span style="color: #DD0000">"CUBRID:</span><span style="color: #0000BB">$host</span><span style="color: #DD0000">:</span><span style="color: #0000BB">$port</span><span style="color: #DD0000">:</span><span style="color: #0000BB">$db</span><span style="color: #DD0000">:::?&amp;login_timeout=50000&amp;query_timeout=5000&amp;disconnect_on_query_timeout=yes"</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$req&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">cubrid_prepare</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"SELECT&nbsp;*&nbsp;FROM&nbsp;code"</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$timeout&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">cubrid_get_query_timeout</span><span style="color: #007700">(</span><span style="color: #0000BB">$req</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$timeout</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">cubrid_set_query_timeout</span><span style="color: #007700">(</span><span style="color: #0000BB">$req</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">1000</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$timeout&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">cubrid_get_query_timeout</span><span style="color: #007700">(</span><span style="color: #0000BB">$req</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$timeout</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">cubrid_close</span><span style="color: #007700">(</span><span style="color: #0000BB">$conn</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</code></div>
   </div>

    <div class="example-contents"><p>上の例の出力は以下となります。</p></div>
    <div class="example-contents screen">
<div class="cdata"><pre>
int(5000)
int(1000)
</pre></div>
   </div>
  </div>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.cubrid-get-query-timeout-seealso">
  <h3 class="title">参考</h3>
  <p class="para">
   <ul class="simplelist">
   <li class="member"> <span class="function"><a href="function.cubrid-set-query-timeout.php" class="function" rel="rdfs-seeAlso">cubrid_set_query_timeout()</a> - Set the timeout time of query execution</span></li>
   </ul>
  </p>
 </div>

</div><?php manual_footer(); ?>
 
show source | credits | sitemap | contact | advertising | mirror sites