Ds\Stack::popRemoves and returns the value at the top of the stack 説明
public mixed Ds\Stack::pop()
Removes and returns the value at the top of the stack. パラメータこの関数にはパラメータはありません。 戻り値The removed value which was at the top of the stack. エラー / 例外UnderflowException if empty. 例例1 Ds\Stack::pop example
上の例の出力は、 たとえば以下のようになります。 string(1) "c" string(1) "b" string(1) "a" |