本文整理汇总了PHP中Stack::getElement方法的典型用法代码示例。如果您正苦于以下问题:PHP Stack::getElement方法的具体用法?PHP Stack::getElement怎么用?PHP Stack::getElement使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Stack
的用法示例。
在下文中一共展示了Stack::getElement方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getElement
return false;
}
}
function First()
{
return $this->stackArray[$this->index];
}
function Last()
{
return $this->stackArray[0];
}
public function getElement($position)
{
if ($position <= $this->index + 1) {
$arrayPosition = $this->index + 1 - $position;
return $this->stackArray[$arrayPosition];
} else {
echo "Invalid";
}
}
}
$myStack = new Stack();
$myStack->push(1);
$myStack->push(4);
$myStack->push(5);
echo "First pop is ", $myStack->pop(), "<br>";
echo "Second pop is ", $myStack->pop(), "<br>";
echo "First value of stack is ", $myStack->First(), "<br>";
$myStack->pop();
echo "present index value is ", $myStack->getElement(2);
示例2: isEmpty
echo "stack is empty";
}
}
public function isEmpty()
{
if ($this->index == -1) {
return true;
} else {
return false;
}
}
public function first()
{
echo $this->stackArray[$this->index];
}
public function last()
{
echo $this->stackArray[0];
}
}
$newStack = new Stack();
$newStack->push(2);
$newStack->push(6);
$newStack->pop();
$newStack->pop();
$newStack->pop();
$newStack->isEmpty();
$newStack->first();
$newStack->last();
$newStack->getElement(1);