user22729726
user22729726

Reputation:

Use Xdebug var_dump function without enabling other features

I only use var_dump functionality from xdebug extension.

I have set php.ini to xdebug.mode = develop.

But develop mode slows the whole application (I am assuming it enables a lot more features other than just var_dump).

Is it possible to enable only var_dump feature and disable all the rest of the features from Xdebug extension?

Upvotes: -1

Views: 48

Answers (1)

Derick
Derick

Reputation: 36774

No, that is not possible. However, you can set xdebug.mode=off and call it as xdebug_var_dump() instead.

Upvotes: 1

Related Questions