function.array-splice.html
16.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!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>Entfernt einen Teil eines Arrays und ersetzt ihn durch etwas
anderes</title>
</head>
<body><div class="manualnavbar" style="text-align: center;">
<div class="prev" style="text-align: left; float: left;"><a href="function.array-slice.html">array_slice</a></div>
<div class="next" style="text-align: right; float: right;"><a href="function.array-sum.html">array_sum</a></div>
<div class="up"><a href="ref.array.html">Array Funktionen</a></div>
<div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="function.array-splice" class="refentry">
<div class="refnamediv">
<h1 class="refname">array_splice</h1>
<p class="verinfo">(PHP 4, PHP 5)</p><p class="refpurpose"><span class="refname">array_splice</span> — <span class="dc-title">
Entfernt einen Teil eines Arrays und ersetzt ihn durch etwas
anderes
</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.array-splice-description">
<h3 class="title">Beschreibung</h3>
<div class="methodsynopsis dc-description">
<span class="type">array</span> <span class="methodname"><strong>array_splice</strong></span>
( <span class="methodparam"><span class="type">array</span> <code class="parameter reference">&$input</code></span>
, <span class="methodparam"><span class="type">int</span> <code class="parameter">$offset</code></span>
[, <span class="methodparam"><span class="type">int</span> <code class="parameter">$length</code><span class="initializer"> = 0</span></span>
[, <span class="methodparam"><span class="type"><a href="language.pseudo-types.html#language.types.mixed" class="type mixed">mixed</a></span> <code class="parameter">$replacement</code></span>
]] )</div>
<p class="para rdfs-comment">
Entfernt die durch <code class="parameter">offset</code> und
<code class="parameter">length</code> angegebenen Elemente aus dem Array
<code class="parameter">input</code>, und ersetzt diese durch die Elemente
des Arrays <code class="parameter">replacement</code>, wenn angegeben.
</p>
<p class="para">
Beachten Sie, dass numerische Schlüssel in
<code class="parameter">input</code> nicht erhalten werden.
</p>
<blockquote class="note"><p><strong class="note">Hinweis</strong>:
<span class="simpara">
Wenn <code class="parameter">replacement</code> kein Array ist, wird es in
ein Array <a href="language.types.array.html#language.types.array.casting" class="link">umgewandelt</a>
(dies entspricht <code class="code">(array) $parameter</code>). Dies kann zu
unerwartetem Verhalten führen, wenn <code class="parameter">replacement</code>
ein Objekt oder <strong><code>NULL</code></strong> ist.
</span>
</p></blockquote>
</div>
<div class="refsect1 parameters" id="refsect1-function.array-splice-parameters">
<h3 class="title">Parameter-Liste</h3>
<p class="para">
<dl>
<dt>
<code class="parameter">input</code></dt>
<dd>
<p class="para">
Das Eingabe-Array.
</p>
</dd>
<dt>
<code class="parameter">offset</code></dt>
<dd>
<p class="para">
Ist <code class="parameter">offset</code> positiv, beginnt der zu
entfernende Bereich bei diesem Offset vom Anfang des Arrays
<code class="parameter">input</code>. Ist <code class="parameter">offset</code>
negativ, beginnt der zu entfernende Bereich so viele Elemente
vor dem Ende des Arrays <code class="parameter">input</code>.
</p>
</dd>
<dt>
<code class="parameter">length</code></dt>
<dd>
<p class="para">
Ist <code class="parameter">length</code> nicht angegeben, wird alles
von <code class="parameter">offset</code> bis zum Ende des Arrays
entfernt. Ist <code class="parameter">length</code> angegeben und
positiv, werden so viele Elemente entfernt. Ist
<code class="parameter">length</code> angegeben und negativ, so ist das
Ende des entfernten Bereichs so viele Elemente vor dem Ende des
Array. Tipp: Um alles von <code class="parameter">offset</code> bis zum
Ende des Arrays zu entfernen, wenn
<code class="parameter">replacement</code> ebenfalls angegeben ist,
verwenden Sie <em>count($input)</em> als
<code class="parameter">length</code>.
</p>
</dd>
<dt>
<code class="parameter">replacement</code></dt>
<dd>
<p class="para">
Ist das Array <code class="parameter">replacement</code> angegeben,
werden die entfernten Elemente durch die Elemente dieses Arrays
ersetzt.
</p>
<p class="para">
Sind <code class="parameter">offset</code> und
<code class="parameter">length</code> so angegeben, dass nichts entfernt
wird, werden die Elemente von <code class="parameter">replacement</code>
an der von <code class="parameter">offset</code> spezifizierten Stelle
eingefügt. Beachten Sie, dass Schlüssel bei der Ersetzung nicht
erhalten werden.
</p>
<p class="para">
Wenn <code class="parameter">replacement</code> nur aus einem Element
besteht, ist es nicht notwendig, <em>array()</em>
anzugeben, sofern das Element nicht selbst ein Array, ein Objekt
odr <strong><code>NULL</code></strong> ist.
</p>
</dd>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.array-splice-returnvalues">
<h3 class="title">Rückgabewerte</h3>
<p class="para">
Gibt ein Array zurück, das aus den ausgeschnittenen Elementen
besteht.
</p>
</div>
<div class="refsect1 examples" id="refsect1-function.array-splice-examples">
<h3 class="title">Beispiele</h3>
<p class="para">
<div class="example" id="example-4942">
<p><strong>Beispiel #1 <span class="function"><strong>array_splice()</strong></span>-Beispiele</strong></p>
<div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB"><?php<br />$input </span><span style="color: #007700">= array(</span><span style="color: #DD0000">"rot"</span><span style="color: #007700">, </span><span style="color: #DD0000">"grün"</span><span style="color: #007700">, </span><span style="color: #DD0000">"blau"</span><span style="color: #007700">, </span><span style="color: #DD0000">"gelb"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">array_splice</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">, </span><span style="color: #0000BB">2</span><span style="color: #007700">);<br /></span><span style="color: #FF8000">// $input ist nun array("rot", "grün")<br /><br /></span><span style="color: #0000BB">$input </span><span style="color: #007700">= array(</span><span style="color: #DD0000">"rot"</span><span style="color: #007700">, </span><span style="color: #DD0000">"grün"</span><span style="color: #007700">, </span><span style="color: #DD0000">"blau"</span><span style="color: #007700">, </span><span style="color: #DD0000">"gelb"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">array_splice</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">, </span><span style="color: #0000BB">1</span><span style="color: #007700">, -</span><span style="color: #0000BB">1</span><span style="color: #007700">);<br /></span><span style="color: #FF8000">// $input ist nun array("rot", "gelb")<br /><br /></span><span style="color: #0000BB">$input </span><span style="color: #007700">= array(</span><span style="color: #DD0000">"rot"</span><span style="color: #007700">, </span><span style="color: #DD0000">"grün"</span><span style="color: #007700">, </span><span style="color: #DD0000">"blau"</span><span style="color: #007700">, </span><span style="color: #DD0000">"gelb"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">array_splice</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">, </span><span style="color: #0000BB">1</span><span style="color: #007700">, </span><span style="color: #0000BB">count</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">), </span><span style="color: #DD0000">"orange"</span><span style="color: #007700">);<br /></span><span style="color: #FF8000">// $input ist nun array("rot", "orange")<br /><br /></span><span style="color: #0000BB">$input </span><span style="color: #007700">= array(</span><span style="color: #DD0000">"rot"</span><span style="color: #007700">, </span><span style="color: #DD0000">"grün"</span><span style="color: #007700">, </span><span style="color: #DD0000">"blau"</span><span style="color: #007700">, </span><span style="color: #DD0000">"gelb"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">array_splice</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">, -</span><span style="color: #0000BB">1</span><span style="color: #007700">, </span><span style="color: #0000BB">1</span><span style="color: #007700">, array(</span><span style="color: #DD0000">"schwarz"</span><span style="color: #007700">, </span><span style="color: #DD0000">"braun"</span><span style="color: #007700">));<br /></span><span style="color: #FF8000">// $input ist nun array("rot", "grün",<br />// "blau", "schwarz", "braun")<br /><br /></span><span style="color: #0000BB">$input </span><span style="color: #007700">= array(</span><span style="color: #DD0000">"rot"</span><span style="color: #007700">, </span><span style="color: #DD0000">"grün"</span><span style="color: #007700">, </span><span style="color: #DD0000">"blau"</span><span style="color: #007700">, </span><span style="color: #DD0000">"gelb"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">array_splice</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">, </span><span style="color: #0000BB">3</span><span style="color: #007700">, </span><span style="color: #0000BB">0</span><span style="color: #007700">, </span><span style="color: #DD0000">"lila"</span><span style="color: #007700">);<br /></span><span style="color: #FF8000">// $input is now array("rot", "grün",<br />// "blau", "lila", "gelb");<br /></span><span style="color: #0000BB">?></span>
</span>
</code></div>
</div>
</div>
</p>
<p class="para">
<div class="example" id="example-4943">
<p><strong>Beispiel #2 <span class="function"><strong>array_splice()</strong></span>-Beispiele</strong></p>
<div class="example-contents"><p>
Die folgenden Anweisungen ändern die Werte von <var class="varname"><var class="varname">$input</var></var>
auf die gleiche Weise:
</p></div>
<div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB"><?php<br />array_push</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">, </span><span style="color: #0000BB">$x</span><span style="color: #007700">, </span><span style="color: #0000BB">$y</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">array_splice</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">, </span><span style="color: #0000BB">count</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">), </span><span style="color: #0000BB">0</span><span style="color: #007700">, array(</span><span style="color: #0000BB">$x</span><span style="color: #007700">, </span><span style="color: #0000BB">$y</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">array_pop</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">array_splice</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">, -</span><span style="color: #0000BB">1</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">array_shift</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">array_splice</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">, </span><span style="color: #0000BB">0</span><span style="color: #007700">, </span><span style="color: #0000BB">1</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">array_unshift</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">, </span><span style="color: #0000BB">$x</span><span style="color: #007700">, </span><span style="color: #0000BB">$y</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">array_splice</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">, </span><span style="color: #0000BB">0</span><span style="color: #007700">, </span><span style="color: #0000BB">0</span><span style="color: #007700">, array(</span><span style="color: #0000BB">$x</span><span style="color: #007700">, </span><span style="color: #0000BB">$y</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">$input</span><span style="color: #007700">[</span><span style="color: #0000BB">$x</span><span style="color: #007700">] = </span><span style="color: #0000BB">$y</span><span style="color: #007700">; </span><span style="color: #FF8000">// für Arrays, bei denen der Schlüssel dem Offset entspricht<br /></span><span style="color: #0000BB">array_splice</span><span style="color: #007700">(</span><span style="color: #0000BB">$input</span><span style="color: #007700">, </span><span style="color: #0000BB">$x</span><span style="color: #007700">, </span><span style="color: #0000BB">1</span><span style="color: #007700">, </span><span style="color: #0000BB">$y</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?></span>
</span>
</code></div>
</div>
</div>
</p>
</div>
<div class="refsect1 seealso" id="refsect1-function.array-splice-seealso">
<h3 class="title">Siehe auch</h3>
<p class="para">
<ul class="simplelist">
<li class="member"><span class="function"><a href="function.array-slice.html" class="function" rel="rdfs-seeAlso">array_slice()</a> - Extrahiert einen Ausschnitt eines Arrays</span></li>
<li class="member"><span class="function"><a href="function.unset.html" class="function" rel="rdfs-seeAlso">unset()</a> - Löschen einer angegebenen Variablen</span></li>
<li class="member"><span class="function"><a href="function.array-merge.html" class="function" rel="rdfs-seeAlso">array_merge()</a> - Führt ein oder mehrere Arrays zusammen</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.array-slice.html">array_slice</a></div>
<div class="next" style="text-align: right; float: right;"><a href="function.array-sum.html">array_sum</a></div>
<div class="up"><a href="ref.array.html">Array Funktionen</a></div>
<div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>