php 同步代码,PHP进程同步代码实例

该博客介绍了一个在Linux系统下确保同一PHP进程只运行一次的类`SyncProcess`。通过检查PID文件来判断进程是否已运行,使用非阻塞的 flock 函数进行文件锁操作,保证高并发条件下的并发安全性。同时,类中包含`is_process_running`方法,用于检查指定进程是否在运行。
摘要由CSDN通过智能技术生成

/*

* 同一个PHP进程只运行一次,根据进程名字判断是否为排重进程,只能运行于linux,高并发条件下是并发安全的。

*/

class SyncProcess {

private $pidFile;

function __construct($pidFile) {

$this->pidFile = $pidFile;

}

/**

* 非阻塞方式返回进程是否正在运行

*/

function check() {

if (PHP_OS == 'Linux') {

$pidFile = $this->pidFile;

if (!empty($pidFile)) {

$flag = false;

$pidDir = dirname($pidFile);

if (is_dir($pidDir)) {

$flag = true;

}

if ($flag) {

$running = true;

clearstatcache(true, $this->pidFile);

if (!file_exists($this->pidFile))

file_put_contents($this->pidFile, '', LOCK_EX);

$f = fopen($this->pidFile, 'r+');

if (flock($f, LOCK_EX ^ LOCK_NB)) {

$pid = trim(fgets($f));

if (!$this->is_process_running($pid)) {

$running = false;

}

}

if (!$running) {

fseek($f, 0);

ftruncate($f, 0);

fwrite($f, getmypid());

}

flock($f, LOCK_UN);

fclose($f);

return $running;

} else {

debug_print("pid file($pidFile) is invalid", E_USER_WARNING);

}

} else {

debug_print("pid file cant't be empty", E_USER_WARNING);

}

} else {

debug_print(__CLASS__ . ' can only run in Linux', E_USER_WARNING);

return true;

}

}

/**

* 如果正在运行或者发生未知错误返回true,如果没有运行返回false

* @param mixed $pid

*/

private function is_process_running($pid) {

if (is_numeric($pid) && $pid > 0) {

$output = array();

$line = exec("ps -o pid --no-headers -p $pid", $output);

//返回值有空格

$line = trim($line);

if ($line == $pid) {

return true;

} else {

if (empty($output)) {

return false;

} else {

if (php_sapi_name() == 'cli')

$n = "\n";

else

$n = "
";

//到这一步的话应该是出什么问题了

$output = implode($n, $output);

debug_print($output, E_USER_WARNING);

return true;

}

}

}else {

return false;

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值