W3cubDocs

/WordPress

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 );
	}

Changelog

Version Description
5.2.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_recovery_mode_key_service/clean_expired_keys