Last active
September 25, 2020 20:32
-
-
Save logicminds/85389a49a03893f02917ae30d2bb129b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$hashdata = { | |
"product_teams" => [ | |
{ | |
"name"=> "iphone", | |
"token"=> "apple" | |
}, | |
{ | |
"name"=> "xbox", | |
"token"=> "grapes" | |
} | |
] | |
} | |
$hashdata.each | $index, $examplefile| { | |
debug::break() | |
$name = $examplefile['product_teams']['name'] | |
$token = $examplefile['product_teams']['token'] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you , Its is really helpful, Greatly appreciated