-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
817 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,306 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- EN-Revision: e50e79746736dbdfbabe9bd3566793b3ddf38f58 Maintainer: sobak Status: ready --> | ||
<appendix xml:id="array.constants" xmlns="http://docbook.org/ns/docbook"> | ||
&reftitle.constants; | ||
&extension.constants.core; | ||
<para> | ||
<variablelist> | ||
<varlistentry xml:id="constant.case-lower"> | ||
<term> | ||
<constant>CASE_LOWER</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
<constant>CASE_LOWER</constant> jest używana z funkcją | ||
<function>array_change_key_case</function>, aby skonwertować klucze | ||
tablicy na małe litery. Jest to również domyślna opcja dl | ||
<function>array_change_key_case</function>. Od PHP 8.2.0 skonwertowane zostaną | ||
tylko znaki ASCII. | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.case-upper"> | ||
<term> | ||
<constant>CASE_UPPER</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
<constant>CASE_UPPER</constant> jest używana z funkcją | ||
<function>array_change_key_case</function> aby skonwertować klucze | ||
tablicy na duże litery. Od PHP 8.2.0 skonwertowane zostaną | ||
tylko znaki ASCII. | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
</variablelist> | ||
</para> | ||
|
||
<para>Flagi kolejności sortowania: | ||
<variablelist> | ||
<varlistentry xml:id="constant.sort-asc"> | ||
<term> | ||
<constant>SORT_ASC</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
<constant>SORT_ASC</constant> jest używana z funkcją | ||
<function>array_multisort</function>, aby posortować wartości rosnąco. | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.sort-desc"> | ||
<term> | ||
<constant>SORT_DESC</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
<constant>SORT_DESC</constant> jest używana z funkcją | ||
<function>array_multisort</function>, aby posortować wartości malejąco. | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
</variablelist> | ||
</para> | ||
|
||
<para> Flagi typu sortowania: używane przez różne funkcje sortujące | ||
<variablelist> | ||
<varlistentry xml:id="constant.sort-regular"> | ||
<term> | ||
<constant>SORT_REGULAR</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
<constant>SORT_REGULAR</constant> jest używane, aby porównać elementy normalnie. | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.sort-numeric"> | ||
<term> | ||
<constant>SORT_NUMERIC</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
<constant>SORT_NUMERIC</constant> jest używane, aby porównać elementy numerycznie. | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.sort-string"> | ||
<term> | ||
<constant>SORT_STRING</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
<constant>SORT_STRING</constant> jest używane, aby porównać elementy jako ciągi znaków. | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.sort-locale-string"> | ||
<term> | ||
<constant>SORT_LOCALE_STRING</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
<constant>SORT_LOCALE_STRING</constant> jest używane, aby porównać elementy jako | ||
ciągi znaków w oparciu o obecne ustawienia regionalne (locale). | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.sort-natural"> | ||
<term> | ||
<constant>SORT_NATURAL</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
<constant>SORT_NATURAL</constant> jest używane, aby porównać elementy jako | ||
ciągi znaków używając "sortowania naturalnego" jak <function>natsort</function>. | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.sort-flag-case"> | ||
<term> | ||
<constant>SORT_FLAG_CASE</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
<constant>SORT_FLAG_CASE</constant> może być połączona (bitowym OR) z | ||
<constant>SORT_STRING</constant> lub <constant>SORT_NATURAL</constant>, aby | ||
sortować ciągi znaków bez porównania wielkości liter. Od PHP 8.2.0 case folding | ||
zostanie wykonany tylko dla znaków ASCII. | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
</variablelist> | ||
</para> | ||
|
||
<para> Flagi filtrujące: | ||
<variablelist> | ||
<varlistentry xml:id="constant.array-filter-use-key"> | ||
<term> | ||
<constant>ARRAY_FILTER_USE_KEY</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
<constant>ARRAY_FILTER_USE_KEY</constant> jest używana z funkcją | ||
<function>array_filter</function>, aby przekazać każdy z kluczy jako pierwszy argument do podanej funkcji zwrotnej. | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.array-filter-use-both"> | ||
<term> | ||
<constant>ARRAY_FILTER_USE_BOTH</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
<constant>ARRAY_FILTER_USE_BOTH</constant> jest używana z funkcją | ||
<function>array_filter</function>, aby przekazać zarówno wartość, jak i klucz do podanej funkcji zwrotnej. | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
</variablelist> | ||
</para> | ||
|
||
<variablelist> | ||
<varlistentry xml:id="constant.count-normal"> | ||
<term> | ||
<constant>COUNT_NORMAL</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
|
||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.count-recursive"> | ||
<term> | ||
<constant>COUNT_RECURSIVE</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
|
||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.extr-overwrite"> | ||
<term> | ||
<constant>EXTR_OVERWRITE</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
|
||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.extr-skip"> | ||
<term> | ||
<constant>EXTR_SKIP</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
|
||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.extr-prefix-same"> | ||
<term> | ||
<constant>EXTR_PREFIX_SAME</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
|
||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.extr-prefix-all"> | ||
<term> | ||
<constant>EXTR_PREFIX_ALL</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
|
||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.extr-prefix-invalid"> | ||
<term> | ||
<constant>EXTR_PREFIX_INVALID</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
|
||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.extr-prefix-if-exists"> | ||
<term> | ||
<constant>EXTR_PREFIX_IF_EXISTS</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
|
||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.extr-if-exists"> | ||
<term> | ||
<constant>EXTR_IF_EXISTS</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
|
||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.extr-refs"> | ||
<term> | ||
<constant>EXTR_REFS</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
|
||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
</variablelist> | ||
</appendix> | ||
<!-- 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 | ||
--> |
Oops, something went wrong.