dd php

Solutions on MaxInterview for dd php by the best coders in the world

showing results for - "dd php"
Ana Paula
29 May 2016
1// dump
2<?php dump($array)?>
3// dump and die
4<?php dd($array)?>
Diego Alejandro
01 Sep 2016
1dd stands for "Dump and Die."
2
3Laravel´s dd() function can be defined as a helper function, which is used to 
4dump a variable´s contents to the browser and prevent the further script 
5execution.
6  
7Example: dd($array);