Skip to content

Purge Cache directly

Hill Liu edited this page Jun 29, 2021 · 3 revisions
Table of Contents

Code example

$curl = \PMVC\plug('minions');
$oCurl = $curl->get('http://tw.yahoo.com');
$oCurlHash = $oCurl->getHash();
$oCurlCacheObj = $curl->cache();
$isCached = $oCurlCacheObj->hasCache($oCurlHash);
if ($isCached) {
  $oCurlCacheObj->purge($oCurlHash);
}
Clone this wiki locally