shutdown_action_hook() – Runs just before PHP shuts down execution.
You appear to be a bot. Output may be restricted
Description
Runs just before PHP shuts down execution.
Usage
shutdown_action_hook();
Parameters
Returns
void
Source
File name: wordpress/wp-includes/load.php
Lines:
1 to 10 of 10
function shutdown_action_hook() { /** * Fires just before PHP shuts down execution. * * @since 1.2.0 */ do_action( 'shutdown' ); wp_cache_close(); }