mirror of
https://github.com/WenPai-org/wp-china-yes.git
synced 2025-08-08 14:59:18 +08:00
11 lines
No EOL
360 B
PHP
11 lines
No EOL
360 B
PHP
<?php
|
|
/**
|
|
* Debug snippet: dumps current argument scope
|
|
*/
|
|
|
|
?><dl class="debug"><?php
|
|
foreach( $params as $prop => $value ): if( '_' !== substr($prop,0,1) ):?>
|
|
<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>
|