1
0
mirror of https://github.com/php/doc-tr.git synced 2026-03-24 23:32:06 +01:00
Files
archived-doc-tr/reference/strings/functions/strnatcasecmp.xml
2022-10-13 19:08:54 +03:00

145 lines
3.9 KiB
XML
Raw Permalink 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.
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: a3573c18b89fd32aca1c3924d3fd9568900b4a33 Maintainer: nilgun Status: ready -->
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://docbook.org/ns/docbook" xml:id="function.strnatcasecmp">
<refnamediv>
<refname>strnatcasecmp</refname>
<refpurpose>"Doğal sıralama" algoritmasını kullanarak dizgeleri harf
büyüklüğüne duyarsız olarak karşılaştırır</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>int</type><methodname>strnatcasecmp</methodname>
<methodparam><type>string</type><parameter>dizge1</parameter></methodparam>
<methodparam><type>string</type><parameter>dizge2</parameter></methodparam>
</methodsynopsis>
<para>
Bu işlev, "doğal sıralama" adı verilen ve alfasayısal dizgeleri insanlarca
yapılan sıralamaya uygun olarak sıralayan bir algoritmayı gerçekler.
<function>strnatcmp</function> işlevinden farklı olarak karşılaştırma harf
büyüklüğüne duyarlı değildir. Daha fazla bilgi için Martin Pool'un <link
xlink:href="&url.strnatcmp;">Natural Order String Comparison</link>
belgesine bakınız.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>dizge1</parameter></term>
<listitem>
<para>
İlk dizge.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>dizge2</parameter></term>
<listitem>
<para>
İkinci dizge.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
<parameter>dizge1</parameter> dizgesi <parameter>dizge2</parameter>
dizgesinden küçükse <literal>-1</literal>; <parameter>dizge1</parameter>
dizgesi <parameter>dizge2</parameter> dizgesinden büyükse
<literal>1</literal>; <parameter>dizge1</parameter> dizgesi ile
<parameter>dizge2</parameter> dizgesi aynıysa sıfır döndürür.
</para>
</refsect1>
<refsect1 role="changelog">
&reftitle.changelog;
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
&standard.changelog.binary-safe-string-comparison;
</tbody>
</tgroup>
</informaltable>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>- <function>strnatcasecmp</function> örneği</title>
<programlisting role="php">
<![CDATA[
<?php
var_dump(strnatcasecmp('Apple', 'Banana'));
var_dump(strnatcasecmp('Banana', 'Apple'));
var_dump(strnatcasecmp('apple', 'Apple'));
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
int(-1)
int(1)
int(0)
]]>
</screen>
</example>
</para>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>preg_match</function></member>
<member><function>strcmp</function></member>
<member><function>strcasecmp</function></member>
<member><function>substr</function></member>
<member><function>stristr</function></member>
<member><function>strncasecmp</function></member>
<member><function>strncmp</function></member>
<member><function>strstr</function></member>
<member><function>setlocale</function></member>
</simplelist>
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->