Array in Array PHP to Autoit -
i have following code block in php:
$params = array( 'wskey' => '5443', 'number' => array('226340656'));
i want convert above php code autoit code. tried below code
local $params[2][2] = [['wskey', '5443'], ['number', '226340656']]
is correct?
it seams cannot create same structure on autoit because demonstrated structure represented hashmap(php's arrays hashmap) only. , autoit has none of datatype related hashmap (arrays only).
but try find (or write) library provides bunch of functions work variable hashmap(example)
Comments
Post a Comment