Skip to content

emrearpaci/php-dd-function

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

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 :)

Releases

No releases published

Packages

No packages published

Languages