forked from NEKOGET/FuelPHP_docs_jp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
arr.html
2950 lines (2786 loc) · 75.6 KB
/
arr.html
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./../assets/css/combined.css">
<link rel="shortcut icon" href="./../favicon.ico" />
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
var path = './../';
var class_prefix = "Arr::";
</script>
<script src="./../assets/js/combined.js"></script>
<title>Arr - クラス - FuelPHP ドキュメント</title>
</head>
<body>
<div id="container">
<header id="header">
<div class="table">
<h1>
<a href="http://fuelphp.com"><img height="37px" width="147px" src="./../assets/img/fuel.png" /></a>
<strong>Documentation</strong>
</h1>
<form id="google_search">
<p>
<span id="search_clear"> </span>
<input type="submit" name="search_submit" id="search_submit" value="検索" />
<input type="text" value="" id="search_input" name="search_input" />
</p>
</form>
</div>
<nav>
<div class="clear"></div>
</nav>
<a href="#" id="toc_handle">目次</a>
<div class="clear"></div>
</header>
<div id="cse">
<div id="cse_point"></div>
<div id="cse_content"></div>
</div>
<div id="main">
<h2>Arr クラス</h2>
<p>Arr クラスは、配列を扱うヘルパー関数を集めたものです。</p>
<article>
<h4 class="method" id="method_is_multi">is_multi($arr, $all_keys = false)</h4>
<p><strong>is_multi</strong> メソッドは、与えられた配列が多次元配列であるかチェックします。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$arr</kbd></th>
<td><em>必須</em></td>
<td>チェックする配列。</td>
</tr>
<tr>
<th><kbd>$all_keys</kbd></th>
<td>
<pre class="php"><span class="keyword">false</span></pre>
</td>
<td>trueの場合は全ての要素が多次元配列かをチェックします。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>bool</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// 1 次元配列
$arr = array('one' => 1, 'two' => 2);
echo Arr::is_multi($arr);
// 実行結果: false
// 多次元配列
$arr = array('one' => array('test' => 1), 'two' => array('test' => 2), 'three' => array('test' => 3));
echo Arr::is_multi($arr);
// 実行結果: true
// 多次元配列で全ての要素をチェック
$arr = array('one' => array('test' => 1), 'two' => array('test' => 2), 'three' => 3);
echo Arr::is_multi($arr, false); // 実行結果: true
echo Arr::is_multi($arr, true); // 実行結果: false
</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_is_assoc">is_assoc($arr)</h4>
<p><strong>is_assoc</strong> メソッドは、与えられた配列が連想配列であるかチェックします。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$arr</kbd></th>
<td><em>必須</em></td>
<td>チェックする配列。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>bool</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$arr = array('foo', 'bar', 'baz', 'yay');
echo Arr::is_assoc($arr);
// 実行結果: false
$arr = array('foo' => 'foo', 'bar' => 'bar', 'baz' => 'baz', 'yay' => 'yay');
echo Arr::is_assoc($arr);
// 実行結果: true
/*
* たとえもし '2' が string で定義されていたとしても、PHP は内部的に integer として保管するため、
* 連想配列とは認識されません!
*/
$arr = array(0 => 'foo', 1 => 'bar', '2' => 'baz', 3 => 'yay');
echo Arr::is_assoc($arr);
// 実行結果: false!
</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_to_assoc">to_assoc($arr)</h4>
<p><strong>to_assoc</strong> メソッドは連想配列でない配列を連想配列に変換します。もし元の配列に数値が入っていたとしても変換します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$arr</kbd></th>
<td><em>必須</em></td>
<td>変換する配列。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>array|null</td>
</tr>
<tr>
<th>例外</th>
<td><kbd>BadMethodCallException</kbd> 引数の配列の要素数が
奇数のとき</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$arr = array('foo', 'bar', 'baz', 'yay');
print_r(Arr::to_assoc($arr));
// 実行結果:
Array
(
["foo"] => 'bar'
["baz"] => 'yay'
)
$arr = array('foo', 'bar', 'baz');
echo Arr::to_assoc($arr);
// 実行結果: null
</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 id="method_assoc_to_keyval" class="method">assoc_to_keyval($assoc, $key_field, $val_field)</h4>
<p><strong>assoc_to_keyval</strong> メソッドは多次元配列を key=>val の配列に変換します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$assoc</kbd></th>
<td><em>必須</em></td>
<td>変換する配列。</td>
</tr>
<tr>
<th><kbd>$key_field</kbd></th>
<td><em>必須</em></td>
<td>key となる連想配列の添字。</td>
</tr>
<tr>
<th><kbd>$val_field</kbd></th>
<td><em>必須</em></td>
<td>value となる連想配列の添字。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>array</td>
</tr>
<tr>
<th>例外</th>
<td><kbd>InvalidArgumentException</kbd> 1 番目の引数が配列でないか、
Iterator インターフェイスを実装していないとき。</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$people = array(
array(
"name" => "Jack",
"age" => 21
),
array(
"name" => "Jill",
"age" => 23
)
);
print_r(Arr::assoc_to_keyval($people, 'name', 'age'));
// 実行結果:
Array
(
["Jack"] => 21
["Jill"] => 23
)
</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 id="method_keyval_to_assoc" class="method">keyval_to_assoc($array, $key_field, $val_field)</h4>
<p><strong>keyval_to_assoc</strong> メソッドは key => values の配列を与えられたフィールド名と共に多次元配列へ変換します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$array</kbd></th>
<td><em>必須</em></td>
<td>変換する配列。</td>
</tr>
<tr>
<th><kbd>$key_field</kbd></th>
<td><em>必須</em></td>
<td>キーをマッピングする連想配列の添え字。</td>
</tr>
<tr>
<th><kbd>$val_field</kbd></th>
<td><em>必須</em></td>
<td>値をマッピングする連想配列の添え字。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>array</td>
</tr>
<tr>
<th>例外</th>
<td><kbd>InvalidArgumentException</kbd> 1 番目の引数が配列でないか、
Iterator インターフェイスを実装していないとき。</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$people = array(
"Jack" => 21,
"Jill" => 23
);
print_r(Arr::keyval_to_assoc($people, 'name', 'age'));
// 実行結果:
Array
(
[0] => Array
(
["name"] => "Jack"
["age"] => 21
)
[1] => Array
(
["name"] => "Jill"
["age"] => 23
)
)
</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 id="method_average" class="method">average($array)</h4>
<p><strong>average</strong> メソッドは配列のすべての値をとり、その平均値を返します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$array</kbd></th>
<td><em>必須</em></td>
<td>平均値を求める配列。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>array</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>echo Arr::average(array('1', 2, 4, '8'));
// 実行結果: 3.75</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 id="method_flatten" class="method">flatten($array, $glue = ':', $reset = true)</h4>
<p><strong>flatten</strong> メソッドは、多次元配列 (連想配列と数値インデックス両方とも) を 1 次元配列に変換します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$array</kbd></th>
<td><em>必須</em></td>
<td>変換する配列</td>
</tr>
<tr>
<th><kbd>$glue</kbd></th>
<td><pre class="php"><code>:</code></pre></td>
<td>複数のキーを連結するための文字列</td>
</tr>
<tr>
<th><kbd>$reset</kbd></th>
<td><pre class="php"><code>true</code></pre></td>
<td><strong>flatten</strong> が内部で保持している配列に値を追加していく代わりに、新しく配列を作って値を格納します。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>array</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$indexed = array(
array("a"),
array("b"),
array("c"),
);
print_r(Arr::flatten($indexed, '_'));
// 実行結果:
Array
(
[0_0] => a
[0_1] => b
[0_2] => c
)</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 id="method_flatten_assoc" class="method">flatten_assoc($array, $glue = ':', $reset = true)</h4>
<p><strong>flatten_assoc</strong> メソッドは、多次元連想配列を 1 次元の連想配列に落とし込みます。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$array</kbd></th>
<td><em>必須</em></td>
<td>変換する配列。</td>
</tr>
<tr>
<th><kbd>$glue</kbd></th>
<td><pre class="php"><code>:</code></pre></td>
<td>キーをまとめて 1 つにするために使われる文字列</td>
</tr>
<tr>
<th><kbd>$reset</kbd></th>
<td><pre class="php"><code>true</code></pre></td>
<td><strong>flatten_assoc</strong> が内部で保持している配列に値を追加していく代わりに、新しく配列を作って値を格納します。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>array</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$people = array(
array(
"name" => "Jack",
"age" => 21
),
array(
"name" => "Jill",
"age" => 23
)
);
print_r(Arr::flatten_assoc($people));
// 実行結果:
Array
(
[0:name] => Jack
[0:age] => 21
[1:name] => Jill
[1:age] => 23
)
// 別の配列を先頭にして変換してみましょう
print_r(Arr::flatten_assoc(array(array("name" => "Humpty", "age" => 11)), ":", false));
// 実行結果:
Array
(
[0:name] => Humpty
[0:age] => 11
[1:name] => Jill
[1:age] => 23
)
</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 id="method_reverse_flatten" class="method">reverse_flatten($array, $glue = ':')</h4>
<p><strong>reverse_flatten</strong></p> メソッドは、flatten によってまとめられた 1 次元配列を元の多次元配列 (連想配列含む) に戻します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$array</kbd></th>
<td><em>必須</em></td>
<td>戻す 1 次元配列。</td>
</tr>
<tr>
<th><kbd>$glue</kbd></th>
<td><pre class="php"><code>:</code></pre></td>
<td>キーを合成するために使われた文字</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>array</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$flattened = array(
'0_name' => 'James',
'0_age' => 24,
'1_name' => 'John',
'1_age' => 34,
);
print_r(Arr::reverse_flatten($flattened, '_'));
// 実行結果:
Array
(
[0] => Array
(
[name] => James
[age] => 24
)
[1] => Array
(
[name] => John
[age] => 34
)
)</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 id="method_filter_prefixed" class="method">filter_prefixed($array, $prefix, $remove_prefix = true)</h4>
<p><strong>filter_prefixed</strong> メソッドはプレフィックスによって配列をフィルタします。設定されたプレフィックスから始まるキーを持つ値のみの配列を返します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$array</kbd></th>
<td><em>必須</em></td>
<td>フィルタする配列。</td>
</tr>
<tr>
<th><kbd>$prefix</kbd></th>
<td><em>必須</em></td>
<td>フィルタのためのプレフィックス文字列。</td>
</tr>
<tr>
<th><kbd>$remove_prefix</kbd></th>
<td><pre class="php"><code>true</code></pre></td>
<td>配列のキーからプレフィックスを取り除くかどうか。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>array</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$arr = array(
"user_name" => "John",
"user_surname" => "Lastname",
"project_name" => "Fuel",
"project_type" => "Framework",
);
print_r(Arr::filter_prefixed($arr, "user_"));
// 実行結果:
Array
(
[name] => John
[surname] => Lastname
)
// プレフィックスをそのまま保持しましょう
print_r(Arr::filter_prefixed($arr, "project_", false);
// 実行結果:
Array
(
[project_name] => Fuel
[project_type] => Framework
)
</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 id="method_remove_prefixed" class="method">remove_prefixed($array, $prefix)</h4>
<p><strong>remove_prefixed</strong> メソッドは、与えられたプレフィックスにマッチするキーを持つ値を配列から取り除きます。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$array</kbd></th>
<td><em>必須</em></td>
<td>値が取り除く配列。</td>
</tr>
<tr>
<th><kbd>$prefix</kbd></th>
<td><em>必須</em></td>
<td>フィルタに使うプレフィックス文字列。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>array</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$arr = array(
"user_name" => "John",
"user_surname" => "Lastname",
"project_name" => "Fuel",
"project_type" => "Framework",
);
print_r(Arr::remove_prefixed($arr, "project"));
// 実行結果:
Array
(
[user_name] => John
[user_surname] => Lastname
)
</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 id="method_filter_suffixed" class="method">filter_suffixed($array, $suffix, $remove_suffix = true)</h4>
<p><strong>filter_suffixed</strong> メソッドはサフィックスで配列をフィルタします。与えられたサフィックス文字列で終わるキーを持つ配列を返します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$array</kbd></th>
<td><em>必須</em></td>
<td>フィルタする配列。</td>
</tr>
<tr>
<th><kbd>$suffix</kbd></th>
<td><em>必須</em></td>
<td>フィルタに使用する文字列</td>
</tr>
<tr>
<th><kbd>$remove_suffix</kbd></th>
<td><pre class="php"><code>true</code></pre></td>
<td>配列のキーからサフィックスを取り除くかどうか。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>array</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$arr = array(
"name_1" => "John",
"surname_1" => "Lastname",
"name_2" => "Ted",
"surname_2" => "Surname",
);
print_r(Arr::filter_suffixed($arr, "_1"));
// 実行結果:
Array
(
[name] => John
[surname] => Lastname
)
// サフィックスを保持したままにしてみましょう
print_r(Arr::filter_suffixed($arr, "_1", false);
// 実行結果:
Array
(
[name_1] => John
[surname_1] => Lastname
)
</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 id="method_remove_suffixed" class="method">remove_suffixed($array, $suffix)</h4>
<p><strong>remove_suffixed</strong> メソッドは配列から与えられたサフィックスで終了するキーを持つ値を削除します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$array</kbd></th>
<td><em>必須</em></td>
<td>値を取り除く配列。</td>
</tr>
<tr>
<th><kbd>$suffix</kbd></th>
<td><em>必須</em></td>
<td>フィルタに使うサフィックス文字列。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>array</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$arr = array(
"name_1" => "John",
"surname_1" => "Lastname",
"name_2" => "Ted",
"surname_2" => "Bear",
);
print_r(Arr::remove_suffixed($arr, "_1"));
// 実行結果:
Array
(
[name_2] => Ted
[surname_2] => Surname
)
</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 id="method_filter_keys" class="method">filter_keys($array, $keys, $remove = false)</h4>
<p><strong>filter_keys</strong> メソッドは、与えられた配列に含まれた複数のキーで配列をフィルタします。$keys に含まれるキーを持つ値のみの配列を返します。また $keys によって元の配列の値を削除することもできます。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$array</kbd></th>
<td><em>必須</em></td>
<td>フィルタする配列。</td>
</tr>
<tr>
<th><kbd>$keys</kbd></th>
<td><em>必須</em></td>
<td>配列をフィルタするためのキーを持つ配列。</td>
</tr>
<tr>
<th><kbd>$remove</kbd></th>
<td><pre class="php"><code>false</code></pre></td>
<td>もし true ならば、フィルタされた配列を新しく作る代わりに、 $array から直接 $keys に含まれるキーを削除します。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>array</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$arr = array(
"user_name" => "John",
"user_surname" => "Lastname",
"project_name" => "Fuel",
"project_type" => "Framework",
);
print_r(Arr::filter_keys($arr, array('project_name', 'user_name')));
// 実行結果:
Array
(
[project_name] => Fuel
[user_name] => John
)
// いくつかのキーを削除してみましょう
print_r(Arr::filter_keys($arr, array('user_name', 'user_surname'), true));
// 実行結果:
Array
(
[project_name] => Fuel
[project_type] => Framework
)
</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 id="method_filter_recursive" class="method">filter_recursive($array, $callback = null)</h4>
<p><strong>filter_recursive</strong> メソッドは、PHP の array_filter() 関数の再帰バージョンです。 array_filter() と同様に、フィルタするかどうかを決めるコールバック関数を渡すことができます。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$array</kbd></th>
<td><em>必須</em></td>
<td>フィルタする配列。</td>
</tr>