📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 05:49:36
📂
/ (Root)
/
home
/
xeqi7597
/
public_html
/
wp-content
/
plugins
/
seo-by-rank-math
/
includes
/
replace-variables
📍 /home/xeqi7597/public_html/wp-content/plugins/seo-by-rank-math/includes/replace-variables
🔄 Refresh
✏️
Editing: class-cache.php
Writable
<?php /** * Variable replacement base. * * @since 1.0.33 * @package RankMath * @subpackage RankMath\Replace_Variables * @author Rank Math <support@rankmath.com> */ namespace RankMath\Replace_Variables; defined( 'ABSPATH' ) || exit; /** * Cache class. */ class Cache extends Base { /** * Cache holder. * * @var array */ private $cache = []; /** * Get from cache. * * @param string $id ID to get from cache. * * @return mixed */ protected function get_cache( $id ) { return isset( $this->cache[ $id ] ) ? $this->cache[ $id ] : ''; } /** * In cache. * * @param string $id ID to get from cache. * * @return bool */ protected function in_cache( $id ) { return isset( $this->cache[ $id ] ); } /** * Save into cache. * * @param string $id ID to get from cache. * @param mixed $value Value to save. */ protected function set_cache( $id, $value ) { $this->cache[ $id ] = $value; } }
💾 Save Changes
❌ Cancel