Created
January 30, 2012 21:19
-
-
Save fabioluciano/1706774 to your computer and use it in GitHub Desktop.
This file contains 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
<?php | |
$array = [ | |
'isto', 'eh', 'um', 'array', 'com', 'varios', 'itens', 'e', 'indice', 'numerico' | |
]; | |
echo implode(' ', $array); | |
//output: isto eh um array com varios itens e indice numerico |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment