programming4 years ago
What’s different var_dump VS print_r in PHP
The var_dump function displays structured information about variables/expressions including its type and value. Arrays are explored recursively with values indented to show structure. It also shows which array values and object...
Comments