Yoast\WP\SEO\Expiring_Store\Application
Expiring_Store::persist
Persists a value scoped to the current blog.
Метод класса: Expiring_Store{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Expiring_Store = new Expiring_Store(); $Expiring_Store->persist( $key, $value, $ttl_in_seconds ): void;
- $key(строка) (обязательный)
- The key.
- $value(scalar|array<string|int|float|true|false|массив|null>|JsonSerializable) (обязательный)
- The value to store.
- $ttl_in_seconds(int) (обязательный)
- The time-to-live in seconds.
Код Expiring_Store::persist() Expiring Store::persist Yoast 27.7
public function persist( string $key, $value, int $ttl_in_seconds ): void {
$this->do_persist( $this->prefix_for_blog( $key ), $value, $ttl_in_seconds );
}