WP_Recovery_Mode_Key_Service::clean_expired_keys() WordPress Method
The WP_Recovery_Mode_Key_Service::clean_expired_keys() method is used to remove expired keys from the WordPress database. This is a cleanup routine that is automatically run by the WordPress recovery mode key service.
WP_Recovery_Mode_Key_Service::clean_expired_keys( int $ttl ) #
Removes expired recovery mode keys.
Parameters
- $ttl
(int)(Required)Time in seconds for the keys to be valid for.
Source
File: wp-includes/class-wp-recovery-mode-key-service.php
public function clean_expired_keys( $ttl ) {
$records = $this->get_keys();
foreach ( $records as $key => $record ) {
if ( ! isset( $record['created_at'] ) || time() > $record['created_at'] + $ttl ) {
unset( $records[ $key ] );
}
}
$this->update_keys( $records );
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 5.2.0 | Introduced. |