示例#1
0
 function delete()
 {
     if (!$this->isRunning()) {
         return unlink($this->config['johnSession']['hashfile']) && parent::delete();
     }
     return FALSE;
 }
示例#2
0
文件: bg.php 项目: erixemaan/webjohn
<?php

include 'bgProcess.class.php';
$sessID = $argv[1];
$proc = new bgProcess($sessID);
$proc->run();
?>