You appear to be a bot. Output may be restricted
Description
Dies with an exit.
Usage
_wp_die_handler_exit( $message, $title, $args );
Parameters
- $message
- ( string ) required – The message.
- $title
- ( string ) required – The title.
- $args
- ( array ) required – Array with arguments.
Returns
void
Source
File name: wordpress-develop-tests/phpunit/includes/functions.php
Lines:
1 to 17 of 17
function _wp_die_handler_exit( $message, $title, $args ) { echo "\nwp_die called\n"; echo "Message: $message\n"; if ( ! empty( $title ) ) { echo "Title: $title\n"; } if ( ! empty( $args ) ) { echo "Args: \n"; foreach ( $args as $k => $v ) { echo "\t $k : $v\n"; } } exit( 1 ); }