Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
9answers
3k views

Which php variable debugging function do you use? var_dump, print_r, var_export, other?

I personally use var_dump, but lots of people like print_r. What does everyone use? Pros and Cons? Does someone have a special home brew function of their own?
2
votes
5answers
185 views

Create variable from print_r output

How can i create variable from it's print_r output ? In other words, i'd like to know if something similar to my fictive var_import function exists in php ? var_import would be the inverse of ...
1
vote
2answers
182 views

Alternatives to var_export

var_export function causes an exception while argument has circular references. Are there any alternatives (except serialize) which handle it correctly?
1
vote
1answer
70 views

Why does the name or value of the backButton HTML button not appear in $_POST?

Trying to detect when a user clicks "Cancel" but the $_POST on using var_export($_POST) outputs:- array ( 'descr' => '', 'formSubmitted' => '1', 'backButton_x' => '36', ...