You appear to be a bot. Output may be restricted
Description
Usage
dmp( $args );
Parameters
- $args
- ( mixed ) optional –
Returns
void
Source
File name: wordpress-develop-tests/phpunit/includes/utils.php
Lines:
1 to 6 of 6
function dmp( ...$args ) { foreach ( $args as $thing ) { echo ( is_scalar( $thing ) ? (string) $thing : var_export( $thing, true ) ), "\n"; } }