Cybercartel
Cybercartel

Reputation: 12592

Where can I find constants in my xdebug session?

Recently I was looking for some constants variable in my xdebug session but I didn't find them. Only way I can see them is the watch variable menu. Isn't it a constant a super global? Where can I find them?

Upvotes: 2

Views: 661

Answers (1)

sesser
sesser

Reputation: 1165

See here: How do I examine defined constants in PHP?

Doesn't look you can view constants in xdebug, but you can set a var of what's been defined up to that point.

Upvotes: 1

Related Questions