xPDOCacheManager.set
Последнее обновление Feb 7th, 2020 | История страницы | Улучшить эту страницу | Сообщить о проблеме
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn morexPDOCacheManager::set¶
Устанавливает пару ключ-значение в поставщике кэша.
Также позволяет передавать массив опций. Текущие доступные значения:
-
format
- если равноXPDO_CACHE_JSON
, будет указывать строку как единственные данные в файле (а не как возвращение строки). Это полезно, если вы хотите более правильный синтаксический анализ данных JSON.
Синтаксис¶
API Docs: http://api.modxcms.com/xpdo/cache/xPDOCacheManager.html#set
boolean set (string $key, mixed &$var, [integer $lifetime = 0], [array $options = array()])
Пример¶
Задайте для файла кэша указанную строку, срок действия которой истекает через 2 часа.
$str = 'This will be cached.';
$xpdo->cacheManager->set('mycachefile',$str,7200);
Смотрите также¶
- xPDOCacheManager.copyFile
- xPDOCacheManager.copyTree
- xPDOCacheManager.delete
- xPDOCacheManager.deleteTree
- xPDOCacheManager.endsWith
- xPDOCacheManager.escapeSingleQuotes
- xPDOCacheManager.get
- xPDOCacheManager.getCachePath
- xPDOCacheManager.getCacheProvider
- xPDOCacheManager.matches
- xPDOCacheManager.replace
- xPDOCacheManager.writeFile
- xPDOCacheManager.set
- xPDOCacheManager.writeTree
- xPDOCacheManager
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn more