/    Sign up×
Community /Pin to ProfileBookmark

[RESOLVED] logging out variables/arrays for testing

Hello, I was wondering what are some of the best practices, or most common ways of logging out/debugging arrays and variables when testing.

For example, I would like to see what a particular variable is set to or what is in an array at a particular time. Preferably in a way where I can have it show up in my php_errors.log or something also.

Thanks!

to post a comment
PHP

2 Comments(s)

Copy linkTweet thisAlerts:
@NogDogJun 03.2011 — Something simple:
[code=php]
error_log('$var = ' . $var);
error_log('$myArray = ' . print_r($myArray, true));
[/code]

You can also get lots of info at times with debug_backtrace() (or print_debug_backtrace()).
Copy linkTweet thisAlerts:
@mich5blueauthorJun 03.2011 — perfect, thanks!
×

Success!

Help @mich5blue spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...