“Laravel PHP Was macht kompakt” Code-Antworten

Kompakt Laravel

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

Laravel PHP Was macht kompakt

// 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

Ähnliche Antworten wie “Laravel PHP Was macht kompakt”

Fragen ähnlich wie “Laravel PHP Was macht kompakt”

Weitere verwandte Antworten zu “Laravel PHP Was macht kompakt” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen