Sophie

Sophie

distrib > Mageia > 7 > aarch64 > by-pkgid > 2b917e0437961edec048f1d15e2d7449 > files > 1835

php-manual-en-7.2.11-1.mga7.noarch.rpm

<!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>Returns a sub-deque of a given range</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="ds-deque.shift.html">Ds\Deque::shift</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="ds-deque.sort.html">Ds\Deque::sort</a></div>
 <div class="up"><a href="class.ds-deque.html">Deque</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="ds-deque.slice" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">Ds\Deque::slice</h1>
  <p class="verinfo">(PECL ds &gt;= 1.0.0)</p><p class="refpurpose"><span class="refname">Ds\Deque::slice</span> &mdash; <span class="dc-title">
   Returns a sub-deque of a given range
  </span></p>

 </div>

 <div class="refsect1 description" id="refsect1-ds-deque.slice-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="type"><span class="type Ds\Deque">Ds\Deque</span></span> <span class="methodname"><strong>Ds\Deque::slice</strong></span>
    ( <span class="methodparam"><span class="type">int</span> <code class="parameter">$index</code></span>
   [, <span class="methodparam"><span class="type">int</span> <code class="parameter">$length</code></span>
  ] )</div>

  <p class="para rdfs-comment">
    Creates a sub-deque of a given range.
  </p>

 </div>


 <div class="refsect1 parameters" id="refsect1-ds-deque.slice-parameters">
  <h3 class="title">Parameters</h3>
  <dl>

   
    <dt>
<code class="parameter">index</code></dt>

    <dd>

        <p class="para">
            The index at which the sub-deque starts.
        </p>
        <p class="para">
            If positive, the deque will start at that index in the deque.
            If negative, the deque will start that far from the end.
        </p>
    </dd>

    
    
    <dt>
<code class="parameter">length</code></dt>

    <dd>

     <p class="para">
        If a length is given and is positive, the resulting
        deque will have up to that many values in it.

        If the length results in an overflow, only
        values up to the end of the deque will be included.

        If a length is given and is negative, the deque
        will stop that many values from the end.

        If a length is not provided, the resulting deque
        will contain all values between the index and the
        end of the deque.
     </p>
    </dd>

   
  </dl>

 </div>


 <div class="refsect1 returnvalues" id="refsect1-ds-deque.slice-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
    A sub-deque of the given range.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-ds-deque.slice-examples">
  <h3 class="title">Examples</h3>
  <div class="example" id="example-5240">
   <p><strong>Example #1 <span class="function"><strong>Ds\Deque::slice()</strong></span> example</strong></p>
   <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />$deque&nbsp;</span><span style="color: #007700">=&nbsp;new&nbsp;\</span><span style="color: #0000BB">Ds</span><span style="color: #007700">\</span><span style="color: #0000BB">Deque</span><span style="color: #007700">([</span><span style="color: #DD0000">"a"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"b"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"c"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"d"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"e"</span><span style="color: #007700">]);<br /><br /></span><span style="color: #FF8000">//&nbsp;Slice&nbsp;from&nbsp;2&nbsp;onwards<br /></span><span style="color: #0000BB">print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">$deque</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">slice</span><span style="color: #007700">(</span><span style="color: #0000BB">2</span><span style="color: #007700">));<br /><br /></span><span style="color: #FF8000">//&nbsp;Slice&nbsp;from&nbsp;1,&nbsp;for&nbsp;a&nbsp;length&nbsp;of&nbsp;3<br /></span><span style="color: #0000BB">print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">$deque</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">slice</span><span style="color: #007700">(</span><span style="color: #0000BB">1</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">3</span><span style="color: #007700">));<br /><br /></span><span style="color: #FF8000">//&nbsp;Slice&nbsp;from&nbsp;1&nbsp;onwards<br /></span><span style="color: #0000BB">print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">$deque</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">slice</span><span style="color: #007700">(</span><span style="color: #0000BB">1</span><span style="color: #007700">));<br /><br /></span><span style="color: #FF8000">//&nbsp;Slice&nbsp;from&nbsp;2&nbsp;from&nbsp;the&nbsp;end&nbsp;onwards<br /></span><span style="color: #0000BB">print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">$deque</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">slice</span><span style="color: #007700">(-</span><span style="color: #0000BB">2</span><span style="color: #007700">));<br /><br /></span><span style="color: #FF8000">//&nbsp;Slice&nbsp;from&nbsp;1&nbsp;to&nbsp;1&nbsp;from&nbsp;the&nbsp;end<br /></span><span style="color: #0000BB">print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">$deque</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">slice</span><span style="color: #007700">(</span><span style="color: #0000BB">1</span><span style="color: #007700">,&nbsp;-</span><span style="color: #0000BB">1</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</code></div>
   </div>

   <div class="example-contents"><p>The above example will output
something similar to:</p></div>
   <div class="example-contents screen">
<div class="cdata"><pre>
Ds\Deque Object
(
    [0] =&gt; c
    [1] =&gt; d
    [2] =&gt; e
)
Ds\Deque Object
(
    [0] =&gt; b
    [1] =&gt; c
    [2] =&gt; d
)
Ds\Deque Object
(
    [0] =&gt; b
    [1] =&gt; c
    [2] =&gt; d
    [3] =&gt; e
)
Ds\Deque Object
(
    [0] =&gt; d
    [1] =&gt; e
)
Ds\Deque Object
(
    [0] =&gt; b
    [1] =&gt; c
    [2] =&gt; d
)

</pre></div>
   </div>
  </div>
 </div>



</div><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="ds-deque.shift.html">Ds\Deque::shift</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="ds-deque.sort.html">Ds\Deque::sort</a></div>
 <div class="up"><a href="class.ds-deque.html">Deque</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>