-
-
Save ptrnov/84ca646c9280303f7ed3 to your computer and use it in GitHub Desktop.
Catatan
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // make a comma delimited list | |
| $string = join(',', $array); | |
| Or loop yourself: | |
| $string = ''; | |
| foreach ($array as $key => $value) { | |
| $string .= ",$value"; | |
| } | |
| $string = substr($string, 1); // remove leading "," |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment