forked from NEKOGET/FuelPHP_docs_jp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
str.html
783 lines (748 loc) · 22.7 KB
/
str.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
<!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 = "Str::";
</script>
<script src="./../assets/js/combined.js"></script>
<title>Str - クラス - 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>Str クラス</h2>
<p>str クラスは、文字列の操作を手助けするメソッドの集合です。</p>
<article>
<h4 class="method" id="method_increment">increment($str, $first = 1)</h4>
<p><strong>increment</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>$string</kbd></th>
<td><em>必須</em></td>
<td>対象の文字列。</td>
</tr>
<tr>
<th><kbd>$first</kbd></th>
<td><pre class="php"><code>1</code></pre></td>
<td>加算を開始する最初の番号。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>string</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$string = "filename";
Str::increment($string); // 返り値: filename_1
$string = "filename_1";
Str::increment($string); // 返り値: filename_2
$string = "filename";
Str::increment($string, 3); // 返り値: filename_3
</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_random">random($type = 'alnum', $length = 8)</h4>
<p><strong>random</strong> メソッドは、type で指定された文字種のランダムな文字列を生成します。</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>$type</kbd></th>
<td><em>alnum</em></td>
<td>生成する文字列の文字種。alnum 、numeric 、nozero 、 alpha 、 distinct 、 hexdec 、 unique 、sha1 と uuid から選択します。</td>
</tr>
<tr>
<th><kbd>$length</kbd></th>
<td><pre class="php"><code>16</code></pre></td>
<td>生成したい文字列の文字数 (unique 、sha1 と uuid はこのパラメータを無視します) 。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>string</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// alnum (アルファベット大文字、小文字、数字)
Str::random('alnum', 16);
// 返り値: SvZi9Dh3lq7zQYim
// numeric (数字のみ)
Str::random('numeric', 16);
// 返り値: 1045343964672481
// nozero (0 を除いた数字)
Str::random('nozero', 16);
// 返り値: 3244623373994515
// alpha (アルファベット大文字と小文字)
Str::random('alpha', 16);
// 返り値: LuVAXbmxQbbWoYqz
// distinct (読み間違えづらいアルファベット大文字と数字)
Str::random('distinct', 16);
// 返り値: R79MPKMH4KTRN35J
// hexdec (16進数の文字列: a-f, 0-9)
Str::random('hexdec', 16);
// 返り値: 09c34e42f36547f8
// unique (md5 を基にした 32 文字の文字列)
Str::random('unique');
// 返り値: ed4bb844a35b7a4edb7eed0d3795d328
// sha1 (sha1 を基にした 40 文字の文字列)
Str::random('sha1');
// 返り値: af5c5a8cc3be9a3180205c1ed2975015cd6cf1e7
// uuid (バージョン 4 - 擬似乱数)
Str::random('uuid');
// 返り値: f47ac10b-58cc-4372-a567-0e02b2c3d479</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_truncate">truncate($string, $limit, $continuation = '...', $is_html = false)</h4>
<p><strong>truncate</strong> メソッドは、文字列を指定した長さで切り詰めます。文字列が HTML を含む場合は、それを破壊しないようにすることもできます。</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>$string</kbd></th>
<td><em>必須</em></td>
<td>切り詰める文字列。</td>
</tr>
<tr>
<th><kbd>$limit</kbd></th>
<td><em>必須</em></td>
<td>文字列の最大長 (文字列の長さがこの値を超えると切り詰める) 。</td>
</tr>
<tr>
<th><kbd>$continuation</kbd></th>
<td><pre class="php"><code>'...'</code></pre></td>
<td>切り詰めた文字列の末尾に付加する文字列。</td>
</tr>
<tr>
<th><kbd>$is_html</kbd></th>
<td><pre class="php"><code>false</code></pre></td>
<td>文字列が HTML を含む場合、この引数を true にすると、このメソッドは HTML タグを破壊しません。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>string</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$string = "Lorem ipsum dolor sit amet, consectetur adipiscing elit.";
Str::truncate($string, 15); // 返り値: Lorem ipsum dol...
$string = "Lorem ipsum dolor sit amet, consectetur adipiscing elit.";
Str::truncate($string, 15, '...Read More'); // 返り値: Lorem ipsum dol...Read More
</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_alternator">alternator(*$args)</h4>
<p>このメソッドに引数として与えた値を順番に出力するクロージャを返す。
引数に <kbd>false</kbd> を渡してクロージャを呼ぶときに限って、
次に移動しないで値を返し、次回の呼び出しには同じ値を返す。</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>*$args</kbd></th>
<td><em>必須</em></td>
<td>順番に出力するのと同数の引数。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>Closure</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$alt = Str::alternator('one', 'two', 'three', 'four');
echo $alt(); // 'one' を出力
echo $alt(); // 'two' を出力
echo $alt(false); // 'three' を出力、次回の呼び出しを見るとわかるように次には移動しません
echo $alt(); // 'three' を出力
echo $alt(); // 'four' を出力
echo $alt(); // 'one' を出力
// ~など</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_upper">upper($str, $encoding = null)</h4>
<p><strong>upper</strong> メソッドは、すべてのアルファベットを大文字に変換します。特定の文字のエンコーディングについては、PHP の strtoupper() と同等です。</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>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$string</kbd></th>
<td><em>string</em></td>
<td><em>必須</em></td>
<td>入力文字列。</td>
</tr>
<tr>
<th><kbd>$encoding</kbd></th>
<td><em>string</em></td>
<td><pre class="php"><code>null</code></pre></td>
<td>文字エンコーディング。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>string</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>Str::upper('User Data'); // 返り値: 'USER DATA'</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_lower">lower($str, $encoding = null)</h4>
<p><strong>lower</strong> メソッドは、すべてのアルファベットを小文字に変換します。特定の文字のエンコーディングについては、PHP の strtolower() と同等です。</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>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$string</kbd></th>
<td><em>string</em></td>
<td><em>必須</em></td>
<td>入力文字列。</td>
</tr>
<tr>
<th><kbd>$encoding</kbd></th>
<td><em>string</em></td>
<td><pre class="php"><code>null</code></pre></td>
<td>文字エンコーディング。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>string</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>Str::lower('User Data'); // 返り値: 'user data'</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_tr">tr($string, $array = array())</h4>
<p><strong>tr</strong> メソッドは、PHP の strtr() を用いて、与えられた文字列からパラメータをパースします。</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>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$string</kbd></th>
<td><em>string</em></td>
<td><em>必須</em></td>
<td>入力文字列。</td>
</tr>
<tr>
<th><kbd>$array</kbd></th>
<td><em>array</em></td>
<td><pre class="php"><code>array()</code></pre></td>
<td>str_replace に渡すパラメータ。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>string</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>Str::tr('Hello :name', array('name' => 'World')); // 返り値: 'Hello World'</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_is_json">is_json($string)</h4>
<p><strong>is_json</strong> メソッドは、文字列が json エンコードされているかチェックします。</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>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$string</kbd></th>
<td><em>string</em></td>
<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>Str::is_json('{"0":"An","encoded":["string"]}'); // 返り値: true</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_is_serialized">is_serialized($string)</h4>
<p><strong>is_serialized</strong> メソッドは、文字列が PHP シリアライズされているかチェックします。</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>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$string</kbd></th>
<td><em>string</em></td>
<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>Str::is_serialized('a:2:{i:0;s:2:"An";s:7:"encoded";a:1:{i:0;s:6:"string";}}');
// 返り値: true</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_is_html">is_html($string)</h4>
<p><strong>is_html</strong> メソッドは、文字列が HTML かチェックします。</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>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$string</kbd></th>
<td><em>string</em></td>
<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>Str::is_html('Lorem ipsum <b>dolor sit amet</b>, consectetur <u>adipiscing</u> elit.');
// 返り値: true</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_is_xml">is_xml($string)</h4>
<p><strong>is_xml</strong> メソッドは、文字列が XML かチェックします。 <a href="http://www.php.net/manual/ja/ref.libxml.php" target="_blank">libxml エクステンション</a>が必要です。</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>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$string</kbd></th>
<td><em>string</em></td>
<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>Str::is_xml('<?xml version="1.0" encoding="utf-8"?><xml><foo>bar</foo></xml>');
// 返り値: true</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_starts_with">starts_with($str, $start, $ignore_case = false)</h4>
<p><strong>starts_with</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>$str</kbd></th>
<td><em>必須</em></td>
<td>チェック対象の文字列。</td>
</tr>
<tr>
<th><kbd>$start</kbd></th>
<td><em>必須</em></td>
<td>この文字列で始まっているか。</td>
</tr>
<tr>
<th><kbd>$ignore_case</kbd></th>
<td><pre class="php"><code>false</code></pre></td>
<td>大文字小文字を無視するかどうか。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>bool</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$string = "Lorem ipsum dolor sit amet";
Str::starts_with($string, 'Lorem'); // 返り値: true
Str::starts_with($string, 'lorem'); // 返り値: false
Str::starts_with($string, 'lorem', true); // 返り値: true
</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_ends_with">ends_with($str, $end, $ignore_case = false)</h4>
<p><strong>ends_with</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>$str</kbd></th>
<td><em>必須</em></td>
<td>チェック対象の文字列。</td>
</tr>
<tr>
<th><kbd>$end</kbd></th>
<td><em>必須</em></td>
<td>この文字列で終わっているか。</td>
</tr>
<tr>
<th><kbd>$ignore_case</kbd></th>
<td><pre class="php"><code>false</code></pre></td>
<td>大文字小文字を無視するかどうか。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>bool</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$string = "Lorem ipsum dolor sit amet";
Str::ends_with($string, 'amet'); // 返り値: true
Str::ends_with($string, 'Amet'); // 返り値: false
Str::ends_with($string, 'Amet', true); // 返り値: true
</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_sub">sub($str, $start, $length = null, $encoding = null)</h4>
<p><strong>sub</strong> メソッドは、指定された文字列の一部分を返します。特定の文字のエンコーディングについては、PHP の substr() と同等です。</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>$str</kbd></th>
<td><em>必須</em></td>
<td>入力文字列。</td>
</tr>
<tr>
<th><kbd>$start</kbd></th>
<td><em>必須</em></td>
<td>開始位置 (詳細は <a href="http://php.net/substr" target="_blank">php.net</a> を参照してください) 。</td>
</tr>
<tr>
<th><kbd>$length</kbd></th>
<td><pre class="php"><code>null</code></pre></td>
<td>文字数の最大値 (詳細は <a href="http://php.net/substr" target="_blank">php.net</a> を参照してください) 。</td>
</tr>
<tr>
<th><kbd>$encoding</kbd></th>
<td><pre class="php"><code>null</code></pre></td>
<td>文字エンコーディング。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>string</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>Str::sub('User Data', 3, -1); // 返り値: 'r Dat'</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<footer>
<p>
© FuelPHP Development Team 2010-2016 - <a href="http://fuelphp.com">FuelPHP</a> is released under the MIT license.
[ <a href="https://github.com/fuel/docs/commits/1.8/develop/classes/str.html">原文コミット履歴</a> | <a href="https://github.com/NEKOGET/FuelPHP_docs_jp/commits/1.8/develop_japanese/classes/str.html">翻訳コミット履歴</a> | <a href="https://github.com/NEKOGET/FuelPHP_docs_jp/blob/1.8/develop_japanese/classes/str.html">GitHubで修正</a> ]
</p>
</footer>
</div>
</body>
</html>