register_shutdown_function(array(&$this,"shutdown_handler"));
public function shutdown_handler(){
@fclose($this->fp);
}
$this->fp = fopen('tmp/lock.txt', 'w');
if(!flock($this->fp, LOCK_EX | LOCK_NB)) {
echo("Script already running");
exit(-1);
}