Go to the
first
,
previous
,
next
,
last
section,
table of contents
.
pop
`pop(ARRAY)'
`pop ARRAY'
配列の最後の値を返し、配列を 1 減らす。
$tmp = $ARRAY[$#ARRAY--];
と同じ効果がある。配列に要素が一つもない場合は undefined value を返す。 See section
push
.
Go to the
first
,
previous
,
next
,
last
section,
table of contents
.