1 evalmath.inc | EvalMathStack::pop() |
File
- core/
includes/ evalmath.inc, line 374
Class
Code
function pop() {
if ($this->count > 0) {
$this->count--;
return $this->stack[$this->count];
}
return null;
}
1 evalmath.inc | EvalMathStack::pop() |
function pop() {
if ($this->count > 0) {
$this->count--;
return $this->stack[$this->count];
}
return null;
}