mirror of
https://github.com/php/doc-pl.git
synced 2026-03-24 15:12:16 +01:00
159 lines
3.8 KiB
XML
Executable File
159 lines
3.8 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- EN-Revision: 2e60c5134e7a847c99f81eb3f7ecee1f5efeeace Maintainer: sobak Status: ready -->
|
|
<!-- CREDITS: leszek, grzesiek -->
|
|
<refentry xml:id="function.array-combine" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>array_combine</refname>
|
|
<refpurpose>Tworzy tablicę używając wartości jednej tablicy jako kluczy a drugiej jako wartości</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>array</type><methodname>array_combine</methodname>
|
|
<methodparam><type>array</type><parameter>keys</parameter></methodparam>
|
|
<methodparam><type>array</type><parameter>values</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Tworzy tablicę używając wartości z tablicy
|
|
<parameter>keys</parameter> jako kluczy i wartości z tablicy
|
|
<parameter>values</parameter> jako ich wartości.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
<term><parameter>keys</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
Tablica kluczy do użycia. Niepoprawne wartości będą
|
|
konwertowane na typ <type>string</type>.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
<term><parameter>values</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
Tablica wartości do użycia.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Zwraca połączoną tablicę (<type>array</type>).
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="errors">
|
|
&reftitle.errors;
|
|
<para>
|
|
Od PHP 8.0.0 zgłaszany jest błąd <classname>ValueError</classname>, jeśli liczba elementów w
|
|
parametrach <parameter>keys</parameter> i <parameter>values</parameter>
|
|
nie jest jednakowa.
|
|
Przed PHP 8.0.0 zamiast tego emitowany był błąd <constant>E_WARNING</constant>.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="changelog">
|
|
&reftitle.changelog;
|
|
<informaltable>
|
|
<tgroup cols="2">
|
|
<thead>
|
|
<row>
|
|
<entry>&Version;</entry>
|
|
<entry>&Description;</entry>
|
|
</row>
|
|
</thead>
|
|
<tbody>
|
|
<row>
|
|
<entry>8.0.0</entry>
|
|
<entry>
|
|
<function>array_combine</function> zgłasza teraz błąd
|
|
<classname>ValueError</classname> jeśli liczba elementów
|
|
dla każdej z tablic nie jest równa;
|
|
poprzednio funkcja ta zwracała &false;.
|
|
</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</informaltable>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>Przykład użycia <function>array_combine</function></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$a = array('zielone', 'czerwone', 'żółty');
|
|
$b = array('awokado', 'jabłko', 'banan');
|
|
$c = array_combine($a, $b);
|
|
|
|
print_r($c);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<screen>
|
|
<![CDATA[
|
|
Array
|
|
(
|
|
[zielone] => awokado
|
|
[czerwone] => jabłko
|
|
[żółty] => banan
|
|
)
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>array_merge</function></member>
|
|
<member><function>array_walk</function></member>
|
|
<member><function>array_values</function></member>
|
|
<member><function>array_map</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
|
|
-->
|