Głównym problemem jest tutaj współdzielenie identyfikatora PID między żądaniem asynchronicznym, które generuje raport, a skryptem, który powinien go zatrzymać.
Możesz uzyskać swój PID za pomocą:
$stmt = $dbh->prepare("SELECT CONNECTION_ID()");
$stmt->execute();
$pid = $stmt->fetchColumn();
I możesz użyć czegoś takiego jak php-shared-memory aby utworzyć wspólną zmienną między twoimi skryptami. Jeśli nie używasz Composera dla zależności projektu, ta biblioteka ma samodzielną wersję (1.5.0, tutaj ).
Przykład wdrożenia:
<?php
if (!include __DIR__ . '/vendor/autoload.php')
{
die('You must set up the project dependencies.');
}
use Fuz\Component\SharedMemory\SharedMemory;
use Fuz\Component\SharedMemory\Storage\StorageFile;
// your intializations here
$storage = new StorageFile("/tmp/shared.{$user_id}.sync");
$shared = new SharedMemory($storage);
if (!isset($_POST['cancel_request']))
{
$stmt = $dbh->prepare("SELECT CONNECTION_ID()");
$stmt->execute();
$pid = $stmt->fetchColumn();
$shared->pid = $pid;
// your long query here
$shared->destroyStorage();
}
else
{
// kills pid
$pid = $shared->pid;
if (!is_null($pid))
{
$dbh->exec("KILL {$pid}");
}
}