如何修复运行重复的PHP脚本

时间:2020-10-01 09:14:39

标签: php import

我如何阻止重复脚本?例如...我每3分钟(* / 3)有cron,有时服务器响应缓慢,脚本重复。

*For example i have:*
SELECT id FROM table WHERE partner_id=15
if not exists, create record

但是如果脚本重复,我有两个插入,其partner_id = 15。

二次使用锁脚本的最佳做法是什么?

1 个答案:

答案 0 :(得分:0)

最简单的方法是使用文件锁。如果脚本启动,则锁定一些文件,最后释放锁定。如果无法获取锁,则说明正在运行另一个脚本:

<?php

  define("LOCK_FILE_NAME", dirname(__FILE__) . DIRECTORY_SEPARATOR . "lock.lck"); // path and filename of the lock file

  $flockfile = fopen(LOCK_FILE_NAME, 'c');
  if (!flock($flockfile, LOCK_EX | LOCK_NB)) { // try to lock file exclusive, without blocking
    fclose($flockfile); // If no luck - exist
    $flockfile = NULL;
    die('Another process is running');
  }

  print("Lock obtained" . PHP_EOL);

  register_shutdown_function(
    function() use (&$flockfile) {
      if (isset($flockfile)) {
        flock($flockfile, LOCK_UN);  // Release the lock on shutdown
        fclose($flockfile);
        $flockfile = NULL;
        print("Lock released" . PHP_EOL);
      }
    }
  );

  sleep(5); // Emulate some work