Guest User

Untitled

a guest
Feb 17th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. <?php
  2.  
  3. foreach (Cache::getMemory() as $cacheKey => $cacheValue)
  4. {
  5. if (strpos($cacheKey, 'mypackage') !== false)
  6. {
  7. Cache::forget($cacheKey);
  8. }
  9. }
Add Comment
Please, Sign In to add comment