+ 2
why we use var_dump?
6 Antworten
+ 8
var_dump() function displays structured information about one or more expressions that includes its type and value. Arrays and objects are explored recursively with values indented to show structure.
In addition, here you can find more info and examples about it:
https://www.php.net/manual/en/function.var-dump.php
+ 2
To display an object. It is used in debuging faze of a project
+ 2
you’re welcome. You can look into print_r function also
+ 1
so it display its type and value...am I right?
+ 1
yes it does
+ 1
got it....thank you😊