Files
carpseeds.pl/wp-content/plugins/loco-translate/tpl/debug/dump.php
2024-07-15 11:28:08 +02:00

11 lines
351 B
PHP

<?php
/**
* Debug snippet: dumps current argument scope
*/
?><dl class="debug"><?php
foreach( $params as $prop => $value ): if( '_' !== $prop{0} ):?>
<dt><?php echo esc_html($prop)?></dt>
<dd><?php echo esc_html( json_encode($value,JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES|JSON_UNESCAPED_UNICODE) )?></dd><?php
endif; endforeach?>
</dl>