Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

parameterized instance variables (See related posts)

// useful when you want to obtain more than one instance of the same type of variable on the
// same page. i.e. two different addresses. credit goes to argv[0] in #rubyonrails on freenode

instance_variable_get("@#{address_type}_address").country.name

You need to create an account or log in to post comments to this site.


Click here to browse all 4848 code snippets

Related Posts