Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > f800694edefe91adea2624f711a41a2d > files > 6090

php-manual-en-5.5.7-1.mga4.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>Binary safe string comparison of the first n characters</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.strncasecmp.html">strncasecmp</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.strpbrk.html">strpbrk</a></div>
 <div class="up"><a href="ref.strings.html">String Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="function.strncmp" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">strncmp</h1>
  <p class="verinfo">(PHP 4, PHP 5)</p><p class="refpurpose"><span class="refname">strncmp</span> &mdash; <span class="dc-title">Binary safe string comparison of the first n characters</span></p>

 </div>
 
 <div class="refsect1 description" id="refsect1-function.strncmp-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="type">int</span> <span class="methodname"><strong>strncmp</strong></span>
    ( <span class="methodparam"><span class="type">string</span> <code class="parameter">$str1</code></span>
   , <span class="methodparam"><span class="type">string</span> <code class="parameter">$str2</code></span>
   , <span class="methodparam"><span class="type">int</span> <code class="parameter">$len</code></span>
   )</div>

  <p class="para rdfs-comment">
   This function is similar to  <span class="function"><a href="function.strcmp.html" class="function">strcmp()</a></span>, with the
   difference that you can specify the (upper limit of the) number of
   characters from each string to be used in the comparison.
  </p>
  <p class="para">
   Note that this comparison is case sensitive.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.strncmp-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">
   <dl>

    <dt>

     <span class="term"><em><code class="parameter">str1</code></em></span>
     <dd>

      <p class="para">
       The first string.
      </p>
     </dd>

    </dt>

    <dt>

     <span class="term"><em><code class="parameter">str2</code></em></span>
     <dd>

      <p class="para">
       The second string.
      </p>
     </dd>

    </dt>

    <dt>

     <span class="term"><em><code class="parameter">len</code></em></span>
     <dd>

      <p class="para">
       Number of characters to use in the comparison.
      </p>
     </dd>

    </dt>

   </dl>

  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.strncmp-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   Returns &lt; 0 if <em><code class="parameter">str1</code></em> is less than
   <em><code class="parameter">str2</code></em>; &gt; 0 if <em><code class="parameter">str1</code></em>
   is greater than <em><code class="parameter">str2</code></em>, and 0 if they are
   equal.
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.strncmp-seealso">
  <h3 class="title">See Also</h3>
  <p class="para">
   <ul class="simplelist">
    <li class="member"> <span class="function"><a href="function.strncasecmp.html" class="function" rel="rdfs-seeAlso">strncasecmp()</a> - Binary safe case-insensitive string comparison of the first n characters</span></li>
    <li class="member"> <span class="function"><a href="function.preg-match.html" class="function" rel="rdfs-seeAlso">preg_match()</a> - Perform a regular expression match</span></li>
    <li class="member"> <span class="function"><a href="function.substr-compare.html" class="function" rel="rdfs-seeAlso">substr_compare()</a> - Binary safe comparison of two strings from an offset, up to length characters</span></li>
    <li class="member"> <span class="function"><a href="function.strcmp.html" class="function" rel="rdfs-seeAlso">strcmp()</a> - Binary safe string comparison</span></li>
    <li class="member"> <span class="function"><a href="function.strstr.html" class="function" rel="rdfs-seeAlso">strstr()</a> - Find the first occurrence of a string</span></li>
    <li class="member"> <span class="function"><a href="function.substr.html" class="function" rel="rdfs-seeAlso">substr()</a> - Return part of a string</span></li>
   </ul>
  </p>
 </div>


</div><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.strncasecmp.html">strncasecmp</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.strpbrk.html">strpbrk</a></div>
 <div class="up"><a href="ref.strings.html">String Functions</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>