Is it possible to recursively run the script?
To make it clearer, give an example.
Suppose you have a list of images (id — filepath) that you want to process. We call the script a.php with the id parameter of the first image, for example a.php?id=1. The script handles a single image, and calls itself, but with the id parameter the following images for example a.php?id=2, and he dies. Is it possible to implement such a system?