I have a question. I have to program a part in php but only got this Perl example and don't understand the exact Syntax:
#showGetInfo(
# ['Customers/1001/Orders/1001'], #orders paths
# ['Comment'], #additional order attributes
# ['Street2'], #additional address attributes
# ['TransID','Weight'] #additional lineitem attributes
#);
on another part in the file it says:
sub showGetInfo {
my @Params = @_;
my $ahResults = $OrderService->getInfo(@Params)->result;
[...]
}
Except it is just a comment because of the #'s, I need to copy the structure to php.
I suppose there are arrays created, maybe even some arrays in another array but I don't understand especially how the arraystructure is built here. Can you help me and tell me what the variable @Params would look like in php?