uTools-Manuals/docs/php/wincache_ucache_cas.html
2019-04-28 19:00:34 +08:00

124 lines
5.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Compares the variable with old value and assigns new value to it</title>
</head>
<body class="docs"><div id="layout">
<div id="layout-content"><div id="function.wincache-ucache-cas" class="refentry">
<div class="refnamediv">
<h1 class="refname">wincache_ucache_cas</h1>
<p class="verinfo">(PECL wincache &gt;= 1.1.0)</p><p class="refpurpose"><span class="refname">wincache_ucache_cas</span> &mdash; <span class="dc-title">
Compares the variable with old value and assigns new value to it
</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.wincache-ucache-cas-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>wincache_ucache_cas</strong></span>
( <span class="methodparam"><span class="type">string</span> <code class="parameter">$key</code></span>
, <span class="methodparam"><span class="type">int</span> <code class="parameter">$old_value</code></span>
, <span class="methodparam"><span class="type">int</span> <code class="parameter">$new_value</code></span>
) : <span class="type">bool</span></div>
<p class="para rdfs-comment">
Compares the variable associated with the <code class="parameter">key</code> with <code class="parameter">old_value</code>
and if it matches then assigns the <code class="parameter">new_value</code> to it.
</p>
</div>
<div class="refsect1 parameters" id="refsect1-function.wincache-ucache-cas-parameters">
<h3 class="title">参数</h3>
<p class="para">
<dl>
<dt>
<code class="parameter">key</code></dt>
<dd>
<p class="para">
The <code class="parameter">key</code> that is used to store the variable in the cache.
<code class="parameter">key</code> is case sensitive.
</p>
</dd>
<dt>
<code class="parameter">old_value</code></dt>
<dd>
<p class="para">
Old value of the variable pointed by <code class="parameter">key</code> in the user cache.
The value should be of type <em>long</em>, otherwise the function returns
<strong><code>FALSE</code></strong>.
</p>
</dd>
<dt>
<code class="parameter">new_value</code></dt>
<dd>
<p class="para">
New value which will get assigned to variable pointer by <code class="parameter">key</code> if a
match is found. The value should be of type <em>long</em>, otherwise
the function returns <strong><code>FALSE</code></strong>.
</p>
</dd>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.wincache-ucache-cas-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
成功时返回 <strong><code>TRUE</code></strong> 或者在失败时返回 <strong><code>FALSE</code></strong>
</p>
</div>
<div class="refsect1 examples" id="refsect1-function.wincache-ucache-cas-examples">
<h3 class="title">范例</h3>
<p class="para">
<div class="example" id="example-622">
<p><strong>Example #1 Using <span class="function"><strong>wincache_ucache_cas()</strong></span></strong></p>
<div class="example-contents">
<div class="phpcode"><pre><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />wincache_ucache_set</span><span style="color: #007700">(</span><span style="color: #DD0000">'counter'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">2922</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">wincache_ucache_cas</span><span style="color: #007700">(</span><span style="color: #DD0000">'counter'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">2922</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">wincache_ucache_get</span><span style="color: #007700">(</span><span style="color: #DD0000">'counter'</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</pre></div>
</div>
<div class="example-contents"><p>以上例程会输出:</p></div>
<div class="example-contents screen">
<div class="cdata"><pre>
bool(true)
int(1)
</pre></div>
</div>
</div>
</p>
</div>
<div class="refsect1 seealso" id="refsect1-function.wincache-ucache-cas-seealso">
<h3 class="title">参见</h3>
<p class="para">
<ul class="simplelist">
<li class="member"><span class="function"><a href="wincache_ucache_inc.html" class="function" rel="rdfs-seeAlso">wincache_ucache_inc()</a> - Increments the value associated with the key</span></li>
<li class="member"><span class="function"><a href="wincache_ucache_dec.html" class="function" rel="rdfs-seeAlso">wincache_ucache_dec()</a> - Decrements the value associated with the key</span></li>
</ul>
</p>
</div>
</div></div></div></body></html>