<?php

	$meuArray = array( 1, 2, 3 );
    $result="";
	foreach( $meuArray  as  $valor ) {
		$result .= $valor;
	}
	echo $result; // 123