“Laravel Php ¿Qué hace compacto?” Código de respuesta

Laravel compacto

return View::make('myviewfolder.myview', compact('view1','view2','view3'));
Ab R Rakib

Laravel Php ¿Qué hace compacto?

// compact() is a php function that allows you to create an array with variable names and their values
  
<?php
  $city  = "San Francisco";
  $state = "CA";
  $event = "SIGGRAPH";

  $location_vars = array("city", "state");

  $result = compact("event", $location_vars);
  print_r($result);
?>
  
The above example will output:
  Array
	(
      [event] => SIGGRAPH
      [city] => San Francisco
      [state] => CA
	)
    
// Like the post if you found it usefull and help other devs to find the good answer
Worrisome Willet

Respuestas similares a “Laravel Php ¿Qué hace compacto?”

Preguntas similares a “Laravel Php ¿Qué hace compacto?”

Más respuestas relacionadas con “Laravel Php ¿Qué hace compacto?” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código