沒能瞭解的一個‘類’,求解釋

來源:互聯網
上載者:User
沒能理解的一個‘類’,求解釋
以下代碼是一個程式中的一個類檔案(lock.php),先說下他lock.php實際的作用:
在未知(是我不理解)的情況下,會在快取檔案夾 cache下產生一個.lock檔案,例如index.php.lock 如果出現這個index.php.lock檔案,那網站的首頁就打不開了,必須手動刪除它,再重新整理首頁,出現正常的快取檔案index.php 才能正常開啟系統。

這個故障是不定時發生的,我現在也不理解在什麼情況下才會發生,不理解為什麼源碼的作者為什麼要設定這個功能。因為不知道最終來源,也沒辦法找源碼的作者諮詢了。

前幾天,我把這個類檔案lock.php刪除了,網站一直正常,我以為這樣就不會再有index.php.lock 檔案了,但今天系統又打不開了,發現正常的cache/index.php緩衝不見了,把這個類檔案還原,然後再重新整理系統,出現正常的cache/index.php,系統也就正常了。

lock.php的源碼如下:

class lock{
private $num,$lock_marker,$lock_file,$timeout;
public $islock;
private function file_timeout(){
if(file_exists($this->lock_file)){
if(time()-filemtime($this->lock_file)>=$this->timeout){
@unlink($this->lock_file);
return true;
}
return false;
}else return true;
}
function __construct($num=1,$timeout=3,$wait=false,$wait_time=0,$marker = ''){
$this->num=$num;
$marker ||$marker = $_SERVER['SCRIPT_FILENAME'];
$marker = md5($marker);
$this->lock_marker = $marker;
$this->timeout=$timeout;
$this->lock_file=d('./cache/lock/'.$this->lock_marker.$this->num.'.lock');
if(file_exists($this->lock_file)){
$this->islock=!$this->file_timeout();
}else $this->islock=false;
if(!$this->islock)touch($this->lock_file);
else {
if($wait){
$wait_start=0;
while(!$this->file_timeout()){
if($wait_time>0){
$wait_start+=100000;
if($wait_start>$wait_time)break;
}
}
file_exists($this->lock_file)&&@unlink($this->lock_file);
touch($this->lock_file);
$this->islock=false;
}
}
}
function __destruct(){
$this->close();
}
public function close(){
!$this->islock&&file_exists($this->lock_file)&&@unlink($this->lock_file);
}
}

?>


------解決方案--------------------
我怎麼覺得你這個代碼不能正常運行呢?
if(!$this->islock) touch($this->lock_file);//修改快取檔案的訪問時間
執行的條件是 $this->islock 為假
而 $this->islock 為假的一個情況是:
$this->islock=!$this->file_timeout();
即方法 $this->file_timeout 返回真
而 $this->file_timeout 方法返回真時有
@unlink($this->lock_file);//刪除快取檔案
return true;

既然快取檔案被刪除了,那麼 touch($this->lock_file) 不就要報錯了嗎?
Warning: touch() [function.touch]: Unable to create file because Invalid argument

另外下面還有
file_exists($this->lock_file)&&@unlink($this->lock_file);//快取檔案存在就刪除掉
touch($this->lock_file);//又在修改不存在的檔案的訪問時間
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.