Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Last active January 4, 2016 14:38
Show Gist options
  • Save ingozoell/8635161 to your computer and use it in GitHub Desktop.
Save ingozoell/8635161 to your computer and use it in GitHub Desktop.
<?php
$myArray = array();
foreach ($this->sinonimo as $s){
$myArray[] = '<span>'.ucfirst($s->sinonimo).'</span>';
}
echo implode( ', ', $myArray );
/* OUTPUT
* <span>Text1<span>, <span>Text2<span>, <span>Text3<span>
*/
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment