Revonzy Mini Shell

Şuanki Dizin: /home4/shrishtiarchitec/www/libraries/classes/
Dosya Yükle :
Şuanki Dosya : //home4/shrishtiarchitec/www/libraries/classes/queue.php

<?php 
class Queue
{
	public $a;
	public $front;
	public $rear;
	function queue()
	{
		$front=0;
		$rear=0;
	}
	function insert($i)
	{
		$this->a[$this->rear] = $i;
		$this->rear++;
	}
	function remove()
	{
		if($this->isempty())
		{
			return false;
		}

		return($this->a[$this->front++]);
	}
	function isempty()
	{
		if($this->front == $this->rear)
		return true;
		else
		return false;
		
	}
}
?>

EliteHackz.ORG
Revonzy Mini Shell
root@revonzy.com

Linux vps.suncrosonline.com 3.10.0-862.3.2.el7.x86_64 #1 SMP Mon May 21 23:36:36 UTC 2018 x86_64
Apache
162.241.69.42