Sophie

Sophie

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

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>Case insensitive string comparisons using a &quot;natural order&quot; algorithm</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="function.strlen.html">strlen</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.strnatcmp.html">strnatcmp</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.strnatcasecmp" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">strnatcasecmp</h1>
  <p class="verinfo">(PHP 4, PHP 5)</p><p class="refpurpose"><span class="refname">strnatcasecmp</span> &mdash; <span class="dc-title">Case insensitive string comparisons using a &quot;natural order&quot; algorithm</span></p>

 </div>
 
 <div class="refsect1 description" id="refsect1-function.strnatcasecmp-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="type">int</span> <span class="methodname"><strong>strnatcasecmp</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>
   )</div>

  <p class="para rdfs-comment">
   This function implements a comparison algorithm that orders alphanumeric
   strings in the way a human being would.  The behaviour of this function is
   similar to  <span class="function"><a href="function.strnatcmp.html" class="function">strnatcmp()</a></span>, except that the comparison is
   not case sensitive.  For more information see: Martin Pool&#039;s <a href="http://sourcefrog.net/projects/natsort/" class="link external">&raquo;&nbsp;Natural Order String Comparison</a> page.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.strnatcasecmp-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>

   </dl>

  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.strnatcasecmp-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   Similar to other string comparison functions, this one 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.strnatcasecmp-seealso">
  <h3 class="title">See Also</h3>
  <p class="para">
   <ul class="simplelist">
    <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.strcmp.html" class="function" rel="rdfs-seeAlso">strcmp()</a> - Binary safe string comparison</span></li>
    <li class="member"> <span class="function"><a href="function.strcasecmp.html" class="function" rel="rdfs-seeAlso">strcasecmp()</a> - Binary safe case-insensitive string comparison</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>
    <li class="member"> <span class="function"><a href="function.stristr.html" class="function" rel="rdfs-seeAlso">stristr()</a> - Case-insensitive strstr</span></li>
    <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.strncmp.html" class="function" rel="rdfs-seeAlso">strncmp()</a> - Binary safe string comparison of the first n characters</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.setlocale.html" class="function" rel="rdfs-seeAlso">setlocale()</a> - Set locale information</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.strlen.html">strlen</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="function.strnatcmp.html">strnatcmp</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>