Arrays support negative indexing, with -1 being the final element of the array:
então ..
$foo = [ 'one', 'two', 'three', 'four', 'five' ]
notice( $foo[-1] )
# 'five'
Alguém sabe uma maneira inteligente de obter o último elemento de um array dentro de um manifesto de fantoche?
O código existente se parece com:
class nginx {
define vhost {
#-----
# Init vars
#-----
$app_parts = split($name, '[_]')
# I can access any element using numeric notation
notify { "Element: ${app_parts[0]}": }
# How do I access the last element?
Arrays support negative indexing, with -1 being the final element of the array:
então ..
$foo = [ 'one', 'two', 'three', 'four', 'five' ]
notice( $foo[-1] )
# 'five'
Tags puppet