Skip to content

Commit 433e299

Browse files
committed
Docs for A::implode()
1 parent 6aec0a0 commit 433e299

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Text:
2+
3+
## Example
4+
5+
```php
6+
$array = ['a', 'b', ['cc', 'dd']];
7+
8+
A::implode($array); // abccdd
9+
A::implode($array, ', '); // a, b, cc, dd
10+
```

0 commit comments

Comments
 (0)