\PhpOffice\PhpSpreadsheet\Calculation\TokenStack

Summary

Methods
Properties
Constants
count()
push()
getStackItem()
pop()
last()
clear()
__toString()
No public properties found
No constants found
No protected methods found
No protected properties found
N/A
No private methods found
$stack
$count
N/A

Properties

$stack

$stack : array<mixed,mixed>

The parser stack for formulae.

Type

array<mixed,mixed>

$count

$count : integer

Count of entries in the parser stack.

Type

integer

Methods

count()

count() : integer

Return the number of entries on the stack.

Returns

integer

push()

push(mixed  $type, mixed  $value, mixed  $reference = null, null|string  $storeKey = null, null|string  $onlyIf = null, null|string  $onlyIfNot = null) 

Push a new entry onto the stack.

Parameters

mixed $type
mixed $value
mixed $reference
null|string $storeKey

will store the result under this alias

null|string $onlyIf

will only run computation if the matching store key is true

null|string $onlyIfNot

will only run computation if the matching store key is false

getStackItem()

getStackItem(  $type,   $value,   $reference = null,   $storeKey = null,   $onlyIf = null,   $onlyIfNot = null) 

Parameters

$type
$value
$reference
$storeKey
$onlyIf
$onlyIfNot

pop()

pop() : mixed

Pop the last entry from the stack.

Returns

mixed

last()

last(integer  $n = 1) : mixed

Return an entry from the stack without removing it.

Parameters

integer $n

number indicating how far back in the stack we want to look

Returns

mixed

clear()

clear() 

Clear the stack.

__toString()

__toString()