Skip to content

Instantly share code, notes, and snippets.

@ruliarmando
Created May 15, 2013 09:53
Show Gist options
  • Save ruliarmando/5582865 to your computer and use it in GitHub Desktop.
Save ruliarmando/5582865 to your computer and use it in GitHub Desktop.
<?php
$arr = array(
array(1,2),
array(1,3),
array(1),
array(2),
);
foreach($arr as $x => $y){
echo implode(",", $y)."<br />";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment