Registers handlers that run at the end of the request.
When processing more complex PHP applications, we often need to perform some operations at the end of the script run. Most often saving states to the database, sending logs and processing error states.
This package provides a simple interface to accomplish this.
The Terminator automatically reserves the operating memory so that it is possible to process handlers even in the event that the script is forcibly terminated due to memory exhaustion. Handlers call each other when you use die
or exit
in your code.
It's best to use Composer for installation, and you can also find the package on Packagist and GitHub.
To install, simply use the command:
$ composer require baraja-core/shutdown-terminator
You can use the package manually by creating an instance of the internal classes, or register a DIC extension to link the services directly to the Nette Framework.
In your class for which you want to call a method after the script exits, simply implement the TerminatorHandler
interface and register the handler:
class MyLogger implements \Baraja\ShutdownTerminator\TerminatorHandler
{
public function __construct()
{
// register this service to Terminator
Terminator::addHandler($this);
}
public function processTerminatorHandler(): void
{
// this logic will be called by Terminator.
}
}
The addHandler()
method supports handler registration, for which you can add your own priority and reserved RAM limit.
baraja-core/shutdown-terminator
is licensed under the MIT license. See the LICENSE file for more details.