Title: Variable Inspector
Author: Bowo
Published: <strong>April 13, 2022</strong>
Last modified: January 16, 2026

---

Search plugins

![](https://ps.w.org/variable-inspector/assets/banner-772x250.png?rev=2709885)

![](https://ps.w.org/variable-inspector/assets/icon-256x256.png?rev=2708895)

# Variable Inspector

 By [Bowo](https://profiles.wordpress.org/qriouslad/)

[Download](https://downloads.wordpress.org/plugin/variable-inspector.2.6.3.zip)

 * [Details](https://wordpress.org/plugins/variable-inspector/#description)
 * [Reviews](https://wordpress.org/plugins/variable-inspector/#reviews)
 * [Development](https://wordpress.org/plugins/variable-inspector/#developers)

 [Support](https://wordpress.org/support/plugin/variable-inspector/)

## Description

Variable Inspector allows you to easily inspect your PHP $variables in a visually
clean manner at a central dashboard in wp-admin. It aims to be an **easy and useful
enough dev and debug tool**.

It provides **a single-line code** to inspect your variable (see “How to Use” below).
Nothing is shown to site visitors nor being output on the frontend, and the **$variable
content is nicely formatted for review** using [var_dump()](https://www.php.net/manual/en/function.var-dump.php),
[var_export()](https://www.php.net/manual/en/function.var-export.php) and [print_r()](https://www.php.net/manual/en/function.print-r.php)
on the inspector dashboard in wp-admin.

It’s a real time-saver for scenarios where [Xdebug](https://xdebug.org/) or even
something like [Ray](https://myray.app/) is not ideal or simply an overkill. For
example, when coding on a non-local environment via tools like [Code Snippets](https://wordpress.org/plugins/code-snippets/),
[WPCodeBox](https://wpcodebox.com/), [Scripts Organizer](https://dplugins.com/products/scripts-organizer/)
or [Advanced Scripts](https://www.cleanplugins.com/products/advanced-scripts/). 
Additionally, because it is a regular WordPress plugin, you simply install, activate
and use without the need for complicated configuration.

### What Users Say

_“**Huge time-saver when working with PHP variables**.”_ ~[Jeff Starr](https://digwp.com/2023/06/plugins-troubleshoot-debug-wordpress/)

_“**Works great!** Love this thing.”_ ~[Josh](https://wordpress.org/support/topic/works-great-8269/)

_“**Every developer need it.** You can debug easily every variable.”_ ~[Pexle Chris](https://wordpress.org/support/topic/awsome-plugin-that-every-developer-need-it/)

_“**All I need**. Enough to test the function of snippets. Works flawless.”_ ~[@tesig](https://wordpress.org/support/topic/all-i-need-39/)

_“**It does what it does very well**, and doesn’t try to do everything.”_ ~[@swb1](https://wordpress.org/support/topic/exactly-what-i-needed-868/)

### How to Use

Simply place the following line anywhere in your code after the `$variable_name`
you’d like to inspect:

    ```
    do_action( 'inspect', [ 'variable_name', $variable_name ] );
    ```

If you’d like to record the originating PHP file and line number, append the PHP
magic constants `__FILE__` and `__LINE__` as follows.

    ```
    do_action( 'inspect', [ 'variable_name', $variable_name, __FILE__, __LINE__ ] );
    ```

This would help you locate and clean up the inspector lines once you’re done debugging.

### Give Back

 * [A nice review](https://bowo.io/vi-rvw-dsc) would be great!
 * [Give feedback](https://bowo.io/vi-fdbk-dsc) and help improve future versions.
 * [Github repo](https://bowo.io/vi-gthb-dsc) to contribute code.
 * Sponsor my work with as little as USD 1 [monthly](https://bowo.io/vi-sp-gth-rdm)
   or [one-time](https://bowo.io/vi-sp-ppl-rdm).

### PRO Version

If you need something more versatile for larger, more complex projects, these [PRO features](https://bowo.io/vi-up-hstd-dsc)
might come in handy:

 * **vi( $variable )** inspector to replace the do_action() above and automatically
   includes the file path and line number. Or, use **vis( $variable_name, ‘variable_name’)**
   when inspecting in/via code snippets plugins (Code Snippets, WPCodeBox, Scripts
   Organizer, etc.) or custom code module of page builders (Bricks, Oxygen Builder,
   etc.)
 * **dump_print_r** and **dump_print_tree** viewers: both viewers combines var_dump
   and print_r, with the later allowing for collapsing and expanding data nodes,
   which is especially useful for inspecting long and complex arrays and objects.
 * **kint** viewer: an advanced viewer with table view for multi-dimensional arrays,
   node access path info, capability to search inside variables, pop-up window viewing
   and advanced info for your complex objects, e.g. available methods and static
   class properties.
 * **Categorize and filter results by color**. This, for example, allows you to 
   categorize $variables according to which stage they’re in inside your code.
 * **Add counter or notes** to inspection results. Another way to tag $variables
   and provide context for the inspection results.
 * **Search filter**: easily find certain $variables by name and type.
 * **View up to 250 results**. The free version is limited to 25 results.
 * **Individual and bulk deletion** of results. Easily clean up your inspection 
   dashboard from obsolete results you no longer need to reference. You can also
   select certain variables in bulk.

[Click here](https://bowo.io/vi-pro-scrsht-rdm) to see a screenshot of the [PRO version](https://bowo.io/vi-up-hstd-dsc)
or see below in the screenshots section.

### What PRO Users Say

_“I was looking for a tool like this for a while. **Great solution!** Love this 
thing.”_ ~Marco Frodl

_“I have used it for a couple of days and it has helped me a lot to **go faster 
when debugging**.””_ ~Javier Sor

_“I’ve only just started using it and it **really helps me get my head around the
code of a plugin** I’m trying to customise”_ ~Tim Dickinson

_“I’ve been testing it and I really like it. It **helps a lot and saves a lot of
time in development**. It’s also compatible with Oxygen, Bricks, WPCodeBox, etc.”_
~Juan Jose Gonzalez, oxygenados.com

_“I just bought this! **Great plugin** – thank you for the hard work!”_ ~Tim Dickinson

_“I used to use Ray locally, I’m also using Xdebug a lot .. if I need to debug some
variables, I use Query Monitor. I bought this, because **the UI is nice, it has 
all those good features from both worlds**.”_ ~Peter Morvay

_“Worth the buy! **It is really good… great for debugging**. Specially, when you
want to write custom code or understand some snippet ChatGPT gave you.”_ ~John D

[Get the PRO version now!](https://bowo.io/vi-up-hstd-dsc)

### Check These Out Too

 * [Admin and Site Enhancements](https://wordpress.org/plugins/admin-site-enhancements/)
   helps you to easily enhance various admin workflows and site aspects while replacing
   multiple plugins doing it.
 * [System Dashboard](https://wordpress.org/plugins/system-dashboard/): Central 
   dashboard to monitor various WordPress components, processes and data, including
   the server.
 * [Debug Log Manager](https://wordpress.org/plugins/debug-log-manager/): Log PHP,
   database and JavaScript errors via WP_DEBUG with one click. Conveniently create,
   view, filter and clear the debug.log file.
 * [WordPress Newsboard](https://bowo.io/vi-wpn-dsc): The latest news, articles,
   podcasts and videos from 100+ WordPress-focused sources.

## Screenshots

 * [[
 * The variable inspection dashboard
 * [[
 * The PRO version

## FAQ

### How was this plugin built?

Variable Inspector was built with: [WordPress Plugin Boilerplate](https://github.com/devinvinson/WordPress-Plugin-Boilerplate/)
| [wppb.me](https://wppb.me/) | [Simple Accordion](https://codepen.io/gecugamo/pen/xGLyXe)
| [Fomantic UI](https://fomantic-ui.com/). It was originally inspired by [WP Logger](https://wordpress.org/plugins/wp-data-logger/).

## Reviews

![](https://secure.gravatar.com/avatar/92552585b3542edcc3ba49cf40c59bc2507c768a1713fd448ae7e76628f4dc27?
s=60&d=retro&r=g)

### 󠀁[Interesting To Play With and Debug](https://wordpress.org/support/topic/interesting-to-play-with-and-debug/)󠁿

 [mediteranija](https://profiles.wordpress.org/mediteranija/) August 11, 2023 1 
reply

I really like what I see. It’s a nice little plugin with the sole purpose of helping
you to debug and read variables in an easy and quality way. I’ve just tested it 
on my dev site, but can’t wait to use it on a real project. I can see how it would
have helped me in the past. P.S. I’ve bought PRO version and plan on keeping it!

![](https://secure.gravatar.com/avatar/105284baf0320b112a1f9e6b1a052ece4e86f919352554525638b0cb519b5293?
s=60&d=retro&r=g)

### 󠀁[All I need](https://wordpress.org/support/topic/all-i-need-39/)󠁿

 [tesig](https://profiles.wordpress.org/tesig/) April 24, 2023 2 replies

Enough to test the function of snippets. Works flawless.

![](https://secure.gravatar.com/avatar/b1c2ef57cd65eaa885ec126438be4e135eb64b005708735defccd75609de61fe?
s=60&d=retro&r=g)

### 󠀁[King of PHP Debugging](https://wordpress.org/support/topic/awsome-plugin-that-every-developer-need-it/)󠁿

 [Pexle Chris](https://profiles.wordpress.org/pexlechris/) January 11, 2025 11 replies

It is a great plugin for developer use! You can debug easily every variable without
printing needed anymore. You also can add feature to “display all” and “hide all”
by default, saving maybe to a cookie. And also let users save their favorite view“
var_export” or “var_dump” or “print_r”

![](https://secure.gravatar.com/avatar/de0218476a6b82d67ae98fbfa249ca0c168bee005de1fa5776150e1d51fdb3c1?
s=60&d=retro&r=g)

### 󠀁[Exactly what I needed](https://wordpress.org/support/topic/exactly-what-i-needed-868/)󠁿

 [swb1](https://profiles.wordpress.org/swb1/) August 27, 2022 1 reply

It does what it does very well, and doesn’t try to do everything.

![](https://secure.gravatar.com/avatar/3a1e48a0d6151d65bec7acb02e7d15d8f3560552010308920eaa0e965adb35ca?
s=60&d=retro&r=g)

### 󠀁[Works great!](https://wordpress.org/support/topic/works-great-8269/)󠁿

 [Josh](https://profiles.wordpress.org/joshintosh/) May 17, 2022 3 replies

Works great on a single install, but not so much on a multisite. Any interest in
making it work on a multisite? Either way, thanks for your work, love this thing.

 [ Read all 5 reviews ](https://wordpress.org/support/plugin/variable-inspector/reviews/)

## Contributors & Developers

“Variable Inspector” is open source software. The following people have contributed
to this plugin.

Contributors

 *   [ Bowo ](https://profiles.wordpress.org/qriouslad/)

“Variable Inspector” has been translated into 3 locales. Thank you to [the translators](https://translate.wordpress.org/projects/wp-plugins/variable-inspector/contributors)
for their contributions.

[Translate “Variable Inspector” into your language.](https://translate.wordpress.org/projects/wp-plugins/variable-inspector)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/variable-inspector/),
check out the [SVN repository](https://plugins.svn.wordpress.org/variable-inspector/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/variable-inspector/)
by [RSS](https://plugins.trac.wordpress.org/log/variable-inspector/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

### Sponsor Variable Inspector

If this plugin has been useful for your **personal project(s), paid dev work, client
site(s) and or agency’s workflow**, please kindly consider **sponsoring from as 
little as USD 1** ([monthly](https://bowo.io/vi-sp-gth-chnlg) or [one-time](https://bowo.io/vi-sp-ppl-chnlg)).
You can also choose to [upgrade to the PRO version](https://bowo.io/vi-up-chnlg).
Thank you!

### 2.7.0 (2026.01.16)

 * **[PRO]** added a ‘Copy’ button for var_export, var_dump and print_r viewers,
   which show up on hover over each variable content. Props to Adrien R. for prompting
   this improvement.

### 2.6.3 (2025.02.20)

 * **[SECURITY FIX]** Fix a couple of vulnerabilties:
    - “Authenticated (Subscriber) Reflected Cross-Site Scripting” responsibly disclosed
      by security researcher Trương Hữu Phúc (truonghuuphuc) via Pathstack.
    - “Missing Authorization to Authenticated (Subscriber) TRUNCATE Table” responsibly
      disclosed by security researcher Trương Hữu Phúc (truonghuuphuc) via Pathstack.

### 2.6.2 (2024.11.17)

 * Tested for compatibility with WP 6.7

### 2.6.1 (2024.02.13)

 * Disable certain viewers from inspecting variables of the object type as they 
   can trigger fatal errors rendering the inspection dashboard unusable.
 * [PRO] Added bulk select of inspection results, which allows for bulk selecting
   certain variable_names. Also added bulk deselect.
 * [PRO] Fix dump_print_r output when text is truncated.

### 2.5.1 (2023.07.20)

 * Fixed an issue where DB table creation failed when DB collation is empty/undefined
   for certain hosting / server set up.

### 2.5.0 (2023.07.05)

 * Implement Source Sans Pro font for all viewers
 * [PRO] Use semi-bold for keys to improve results readability

### 2.4.3.1 (2023.05.24)

 * Fix JS syntax error rendering inspection dashboard disfunctional. Props to [@chillifish](https://wordpress.org/support/users/chillifish/)
   for [reporting it](https://wordpress.org/support/topic/none-of-the-links-in-admin-work/).

### 2.4.3 (2023.05.22)

 * Add handling for null type / value
 * Added link to changelog in footer
 * [PRO] Feedback link in header no longer links to wordpress.org support forum.
   It now links to the contact form within wp-admin.
 * [PRO] Fixed: space in vis() inspector’s second parameter no longer causes JS 
   error and prevents variable content from loading. This is handled by converting
   space to underscore, e.g. ‘the variable’ will show up as $the_variable in the
   inspection result accordion.
 * [PRO] Fixed: special characters inside the ‘notes’ parameter in vi() and vis()
   inspectors are now handled better and won’t cause JS error.
 * [PRO] Fixed: JS error “Maximum call stack size exceeded” when performing ajax
   actions, e.g. generate sample results, refrehs, etc.
 * [PRO] kint viewer: now will properly show $variable_name when getting the access
   path info of each node in the inspection result
 * [PRO] Make the style of NULL results uniform across var_dump_r, var_dump_tree
   and kint viewers

### 2.4.0 (2023.05.15)

 * [PRO] Added vis() inspector for inspecting $variables via code snippets plugins
   or custom code modules of page builders
 * Remove freemius SDK from free version

### 2.3.0 (2023.04.24)

 * Add identification and labeling of ‘float’ / ‘double’ variable type
 * Add results counter. Shown next to the ‘Results’ heading.
 * Added modal window for sponsorship
 * Launch of PRO version. To find out and/or upgrade, simply click on the green ‘
   Upgrade’ button in the inspection dashboard. Lifetime license is available.

### 2.2.1 (2023.04.16)

 * Improve escaping of variables with string type. Preventing inspector layout /
   HTML output interferrence, especially when the string contains HTML tags.

### 2.2.0 (2023.04.13)

 * Clean up and polish inspector dashboard UI. Remove separator lines.
 * Update shortlinks on the dashboard.

### 2.1.0 (2023.04.11)

 * Limit height of each result’s content and add scroll bar when content is taller
   than the limit. This should prevent very long result content from occupying the
   screen.
 * Change background color of each result’s content to white for better readability.

### 2.0.0 (2023.04.10)

 * Add button to easily generate sample results. Useful for first-time installation.
 * Overall UI/X polish which includes adding loading animation on button clicks,
   improved auto-refresh UI, improved readability of variable type labels and ensure
   preferred/chosen viewer is effective/respected after varioius clicks / interaction
   with the inspection dashboard.
 * Change ‘Donate’ (PayPal) link to [(Github) ‘Sponsor’](https://bowo.io/sponsor-vi)
   link. Do consider sponsoring the continued development of Variable Inspector.
 * Add link to [WordPress Newsboard](https://bowo.io/wpn-vi) in footer, a WordPress
   news aggregator site I’ve maintained since 2014.
 * Integrate Freemius SDK in preparation for Pro version.

### 1.9.0 (2023.04.04)

 * Move storage of preferred inspection method from wp_options to user meta.

### 1.8.0 (2022.12.08)

 * Fix an issue where sometimes inspection shows empty or false result when result
   type is array or object.
 * Additional suppression of admin notices via all_admin_notices hook and via CSS.

### 1.7.1 (2022.10.25)

 * All admin notices are now suppressed, i.e. no longer shown, on the Variable Inspector
   page.

### 1.7.0 (2022.10.11)

 * Add viewer (function) selector, e.g. print_r, that will apply to all inspection
   results after the selection is made and will persist after page reload. The selection
   is stored in wp_options table. Different viewer can still be selected for each
   result. Props to [@pexlechris](https://profiles.wordpress.org/pexlechris/) for
   [the feedback](https://wordpress.org/support/topic/awsome-plugin-that-every-developer-need-it/).

### 1.6.0 (2022.10.11)

 * Add toggle to expand or collapse all inspection results. Props to [@pexlechris](https://profiles.wordpress.org/pexlechris/)
   for [the feedback](https://wordpress.org/support/topic/awsome-plugin-that-every-developer-need-it/).

### 1.5.0 (2022.10.09)

 * Remove CodeStar framework dependency and replace with lightweight solution
 * Dequeue public css and js files as they are empty and unused

### 1.4.0 (2022.08.18)

 * Add Refresh button and “Auto refresh” checkbox to load latest results. Props 
   to [@imantsk](https://github.com/imantsk) for the [code and suggestion](https://github.com/qriouslad/variable-inspector/issues/3)
 * Add quick tutorial on the inspector results page to enable users to quickly reference
   the inspector code

### 1.3.2 (2022.05.26)

 * Confirmed compatibility with WordPress 6.0

### 1.3.1 (2022.05.19)

 * Fixed output via var_export()
 * Better sanitization of variable name output
 * Update plugin description

### 1.2.0 (2022.04.14)

 * Fixed output buffering mistake causing the output of the ‘1’ character in variable
   values
 * NEW: implement tabbed output of var_export, var_dump and print_r

### 1.1.0 (2022.04.13)

 * Fixed “Fatal error: Uncaught Error: Call to undefined function dbDelta()”. Thanks
   to [@rashedul007](https://profiles.wordpress.org/rashedul007/) for [the fix](https://github.com/qriouslad/variable-inspector/pull/2)!

### 1.0.1 (2022.04.13)

 * Initial stable release

## Meta

 *  Version **2.6.3**
 *  Last updated **3 months ago**
 *  Active installations **200+**
 *  WordPress version ** 4.8 or higher **
 *  Tested up to **6.9.4**
 *  PHP version ** 5.6 or higher **
 *  Languages
 * [Dutch](https://nl.wordpress.org/plugins/variable-inspector/), [English (US)](https://wordpress.org/plugins/variable-inspector/),
   [Italian](https://it.wordpress.org/plugins/variable-inspector/), and [Portuguese (Brazil)](https://br.wordpress.org/plugins/variable-inspector/).
 *  [Translate into your language](https://translate.wordpress.org/projects/wp-plugins/variable-inspector)
 * Tags
 * [debug](https://wordpress.org/plugins/tags/debug/)[developer](https://wordpress.org/plugins/tags/developer/)
 *  [Advanced View](https://wordpress.org/plugins/variable-inspector/advanced/)

## Ratings

 5 out of 5 stars.

 *  [  5 5-star reviews     ](https://wordpress.org/support/plugin/variable-inspector/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/variable-inspector/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/variable-inspector/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/variable-inspector/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/variable-inspector/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/variable-inspector/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/variable-inspector/reviews/)

## Contributors

 *   [ Bowo ](https://profiles.wordpress.org/qriouslad/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/variable-inspector/)

## Donate

Would you like to support the advancement of this plugin?

 [ Donate to this plugin ](https://bowo.io/vi-sp-rdm)