芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/status.pulsehost.co.uk/vendor/phpfastcache/phpfastcache/docs/EVENTS.md
:mega: As of the V6, Phpfastcache provides an event mechanism. You can subscribe to an event by passing a Closure to an active event: ```php use Phpfastcache\EventManager; /** * Bind the event callback */ EventManager::getInstance()->onCacheGetItem(function(ExtendedCacheItemPoolInterface $itemPool, ExtendedCacheItemInterface $item){ $item->set('[HACKED BY EVENT] ' . $item->get()); }); ``` An event callback can get unbind but you MUST provide a name to the callback previously: ```php use Phpfastcache\EventManager; /** * Bind the event callback */ EventManager::getInstance()->onCacheGetItem(function(ExtendedCacheItemPoolInterface $itemPool, ExtendedCacheItemInterface $item){ $item->set('[HACKED BY EVENT] ' . $item->get()); }, 'myCallbackName'); /** * Unbind the event callback */ EventManager::getInstance()->unbindEventCallback('onCacheGetItem', 'myCallbackName'); ``` ## List of active events: ### ItemPool Events - onCacheGetItem(*Callable* **$callback**) - **Callback arguments** - *ExtendedCacheItemPoolInterface* **$itemPool** - *ExtendedCacheItemInterface* **$item** - **Scope** - ItemPool - **Description** - Allow you to manipulate an item just before it gets returned by the getItem() method. - **Risky Circular Methods** - *ExtendedCacheItemPoolInterface::getItem()* - *ExtendedCacheItemPoolInterface::getItems()* - *ExtendedCacheItemPoolInterface::getItemsByTag()* - *ExtendedCacheItemPoolInterface::getItemsAsJsonString()* - onCacheDeleteItem(*Callable* **$callback**) - **Callback arguments** - *ExtendedCacheItemPoolInterface* **$itemPool** - *ExtendedCacheItemInterface* **$item** - **Scope** - ItemPool - **Description** - Allow you to manipulate an item after being deleted. :exclamation: **Caution** The provided item is in pool detached-state. - **Risky Circular Methods** - *ExtendedCacheItemPoolInterface::deleteItem()* - *ExtendedCacheItemPoolInterface::getItem()* - *ExtendedCacheItemPoolInterface::getItems()* - *ExtendedCacheItemPoolInterface::getItemsByTag()* - *ExtendedCacheItemPoolInterface::getItemsAsJsonString()* - onCacheSaveItem(*Callable* **$callback**) - **Callback arguments** - *ExtendedCacheItemPoolInterface* **$itemPool** - *ExtendedCacheItemInterface* **$item** - **Scope** - ItemPool - **Description** - Allow you to manipulate an item just before it gets saved by the driver. - **Risky Circular Methods** - *ExtendedCacheItemPoolInterface::commit()* - *ExtendedCacheItemPoolInterface::save()* - onCacheSaveDeferredItem(*Callable* **$callback**) - **Callback arguments** - *ExtendedCacheItemPoolInterface* **$itemPool** - *ExtendedCacheItemInterface* **$item** - **Scope** - ItemPool - **Description** - Allow you to manipulate an item just before it gets pre-saved by the driver. - **Risky Circular Methods** - *ExtendedCacheItemPoolInterface::saveDeferred()* - onCacheCommitItem(*Callable* **$callback**) - **Callback arguments** - *ExtendedCacheItemPoolInterface* **$itemPool** - *ExtendedCacheItemInterface[]* **$items** - **Scope** - ItemPool - **Description** - Allow you to manipulate a set of items just before they gets pre-saved by the driver. - **Risky Circular Methods** - *ExtendedCacheItemPoolInterface::commit()* - onCacheClearItem(*Callable* **$callback**) - **Callback arguments** - *ExtendedCacheItemPoolInterface* **$itemPool** - *ExtendedCacheItemInterface[]* **$items** - **Scope** - ItemPool - **Description** - Allow you to manipulate a set of item just before they gets cleared by the driver. - **Risky Circular Methods** - *ExtendedCacheItemPoolInterface::clear()* - *ExtendedCacheItemPoolInterface::clean()* - onCacheWriteFileOnDisk(*Callable* **$callback**) - **Callback arguments** - *ExtendedCacheItemPoolInterface* **$itemPool** - *string* **$file** - *bool* **$secureFileManipulation** - **Scope** - ItemPool - **Description** - Allow you to get notified when a file is written on disk. - **Risky Circular Methods** - *ExtendedCacheItemPoolInterface::writefile()* - onCacheGetItemInSlamBatch(*Callable* **$callback**) - **Callback arguments** - *ExtendedCacheItemPoolInterface* **$itemPool** - *ItemBatch* **$driverData** - *int* **$cacheSlamsSpendSeconds** - **Scope** - ItemPool - **Description** - Allow you to get notified each time a batch loop is looping - **Risky Circular Methods** - *ExtendedCacheItemPoolInterface::deleteItem()* - *ExtendedCacheItemPoolInterface::getItem()* - *ExtendedCacheItemPoolInterface::getItems()* - *ExtendedCacheItemPoolInterface::getItemsByTag()* - *ExtendedCacheItemPoolInterface::getItemsAsJsonString()* ### ItemPool Events (Cluster) - onCacheReplicationSlaveFallback(*Callable* **$callback**) - **Callback arguments** - *ClusterPoolInterface* **$self** - *string* **$caller** - **Scope** - Cluster pool - **Description** - Allow you to get notified when a Master/Slave cluster switches on slave - **Risky Circular Methods** - N/A - onCacheReplicationRandomPoolChosen(*Callable* **$callback**) - **Callback arguments** - *ClusterPoolInterface* **$self** - *ExtendedCacheItemPoolInterface* **$randomPool** - **Scope** - Cluster pool - **Description** - Allow you to get notified when a Random Replication cluster choose a cluster - **Risky Circular Methods** - N/A - onCacheClusterBuilt(*Callable* **$callback**) - **Callback arguments** - *AggregatorInterface* **$clusterAggregator** - *ClusterPoolInterface* **$cluster** - **Scope** - Cluster aggregator - **Description** - Allow you to get notified when a cluster is being built - **Risky Circular Methods** - *$clusterAggregator::getCluster()* ### ItemPool Events - onCacheItemSet(*Callable* **$callback**) - **Callback arguments** - *ExtendedCacheItemInterface* **$item** - *mixed* **$value** - **Scope** - Item - **Description** - Allow you to get the value set to an item. - **Risky Circular Methods** - *ExtendedCacheItemInterface::get()* - onCacheItemExpireAt(*Callable* **$callback**) - **Callback arguments** - *ExtendedCacheItemInterface* **$item** - *\DateTimeInterface* **$expiration** - **Scope** - Item - **Description** - Allow you to get/set the expiration date of an item. - **Risky Circular Methods** - *ExtendedCacheItemInterface::expiresAt()* - onCacheItemExpireAfter(*Callable* **$callback**) - **Callback arguments** - *ExtendedCacheItemInterface* **$item** - *int | \DateInterval* **$time** - **Scope** - Item - **Description** - Allow you to get the "expire after" time of an item. If `$time` is a DateInterval you also set it. - **Risky Circular Methods** - *ExtendedCacheItemInterface::expiresAt()* :new: As of the **V8** you can simply subscribe to **every** events at once of Phpfastcache. ```php onEveryEvents(static function (string $eventName, ...$args) { echo sprintf("Triggered event '{$eventName}' with %d arguments provided", count($args)); }, 'debugCallback'); ``` This is an exhaustive list and it will be updated as soon as new events will be added to the Core.