Ver Mensaje Individual
  #4 (permalink)  
Antiguo 09/06/2016, 11:25
Avatar de hhs
hhs
Colaborador
 
Fecha de Ingreso: junio-2013
Ubicación: México
Mensajes: 2.995
Antigüedad: 10 años, 10 meses
Puntos: 379
Respuesta: Implode explode

Lo puedes hacer usando foreach o utilizando array_map, ejemplo
Código PHP:
Ver original
  1. $lugar1 = array
  2.           (
  3.           array("L","L","L","L","L"),
  4.           array("L","L","L","L","L"),
  5.           array("L","L","L","L","L"),
  6.           array("L","L","L","L","L"),
  7.           array("L","L","L","L","L"),
  8.           );
  9.          
  10. $array_strings = array_map(function($value){
  11.     return implode(',', $value);
  12. }, $lugar1);
  13.  
  14. print_r($array_strings);
__________________
Saludos
About me
Laraveles
A class should have only one reason to change.