Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 448 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 448 Bytes

Php dd function

Dump and die

Sample

$example = 'Hello World!';

dd($example);

Result:

function.php
---------------------------------
string 'Hello World!' (length=12)

$array = ['Hello World!' , 'Hello Turkey!'];

dd($array);

Result:

function.php
---------------------------------
array (size=2)
  0 => string 'Hello World!' (length=12)
  1 => string 'Hello Turkey!' (length=13)

Thanks :)