An associative array is an abstract data type composed of a collection of unique keys mapped to a collection of values.

learn more… | top users | synonyms

1
vote
1answer
36 views

Why can't I reference keys in the result of this PHP function? [duplicate]

Why does this code fail function f(){ return array('k'=>'abc'); } print_r(f()['k']); and this code work? function f(){ return array('k'=>'abc'); } $a = f(); print_r($a['k']); The ...
1
vote
6answers
32 views

Insert a element from php variable in associative array

I have a conditional string like this: echo $cnd = "'use_funds'=>'no'"; And my $data array is : $data = array( $cnd, 'quantity' => $_POST['qty_' . $q], 'veg_name' => ...
0
votes
4answers
37 views

In PHP, filter an Array of Associative Arrays

In PHP, are there any inbuilt functions to turn [{"id":1, "name":"John"}, {"id":2, "name":"Tim"}] into [{"id":1}, {"id":2}] ? I've used JSON to describe the objects above, but that's just a ...
0
votes
1answer
21 views

Merging two arrays then sorting them

Beginner here. I have two arrays, one that contains my values($m1) and the other contains what I want to use as keys($pn) (non unique strings). They have the same length (465) and $pn[0] is the key ...
0
votes
2answers
26 views

Ordered Map / Hash Table in R

While working with lists i've noticed an issue that i didn't expect. result5 <- vector("list",length(queryResults[[1]])) for(i in 1:length(queryResults[[1]])){ id <- queryResults[[1]][i] ...
0
votes
3answers
36 views

Creating an associative array with strings

I read some words from a text file, storing each word as an array element using the file() function. Now I need to sort each word and create an associative array that stores the sorted strings as keys ...
0
votes
2answers
19 views

custom validation class only testing last element

I have been trying to make a custom validation class, but it is bothering me that it only is test thing last element it sees. I need it to test everything I put into it. <?php class Valid { ...
0
votes
1answer
24 views

Trace hierarchical tree for JSON array

I just can't understand why I get undefined index for 'post' in the foreach. Here's the function I use to authenticate to the API via cURL, grab the JSON, cache it and extrapolate with the foreach the ...
0
votes
2answers
25 views

calling values from JSON associative array in JQUERY

I'm attempting to call values from a JSON associative array. I'm finding difficulties as my object is wrapped in "[ ]". For instance: var scifi = [ { "Show":"TNG", ...
0
votes
1answer
15 views

PHP: Find dynamic element from nested associated array

I'm working on a function that looks like this: public function myfunction($mainArr, $keys) { // $mainArr: a nested associative array // $keys: a simple array of strings, example: ...
-7
votes
1answer
46 views

Associative array

I have two arrays: arr1([0]=>1400.20 [1]=>1630.32 [2]=>2531.30 [3]=>9845.62) arr2([0]=>150 [1]=>134 [2]=>901 [3]=>631) and I have ...
0
votes
1answer
31 views

PHP: pushing new data (including new key) in associative array

So I am trying to push new data into an array. This data inlcudes new key values. This is what I am using now, however this will always overwrite the last with the newer in stead of adding a row to ...
0
votes
2answers
20 views

using php class object like associative array [duplicate]

so i'm having this class: class c_user { function __construct($userID) { dbOpen($db); // open database $sq = "select * from users where user_id='".$userID."'"; $rs = ...
-2
votes
1answer
40 views

Storing true or false into an associative array

I've compiled a list of 'old browsers'. I'm doing a check on each one to see if they are in the HTTP_USER_AGENT. My results keep storing as true in the array even when they're false. My problem ...
1
vote
3answers
37 views

Failed to print what is stored in Iterator

// unordered_map::find #include <iostream> #include <string> #include <unordered_map> using namespace std; int main () { std::unordered_map<std::string,double> mymap; ...
0
votes
1answer
25 views

Associative Array, Array and Tree

I have two questions: How can the Array Abstract data type be modified to implement an Associative Array? How can the tree abstract data type be modified to implement an Associative Array?
1
vote
2answers
38 views

select from table with function using pipelined table functions and associative table

I need to return the table as a result of this select. The argument passed to the function opredelyaet from which an array of associative data will be displayed as a table: select * from ...
0
votes
1answer
16 views

Is it possible to pass a variable of value from associative array, using hidden input, to another page?

I am trying to get the $w['id'] value for a mysql row and pass it to another page using a hidden input field and variable $blog_id. Here is the code for the first page: $query = "SELECT * FROM blog ...
0
votes
1answer
29 views

How do I get the values from associative array in classic ASP

I'm using classic ASP to process a form. I'm familiar with how PHP handles forms with something like: function respondWithVars(){ foreach($_POST as $stuff) echo($stuff); } But how do I iterate ...
0
votes
1answer
31 views

Performance of indexOf() vs. an Associative Array in Javascript?

I have a series of values which correspond to certain numbers. There are never two values that correspond to the same number. There are no gaps between the numbers. E.G. {a: 1, b: 2, c: 3, d: 4} as ...
-1
votes
1answer
28 views

How to insert one array one associative array into another associative array in PHP? [closed]

I've a following associative array named $request as follows: Array ( [chapter_mcq_que_id] => 9 [chapter_id] => 103 [chapter_mcq_que] => Who is Anand? ...
0
votes
2answers
41 views

Bash - assign variables to output of a command in a loop

I've got an application that runs and defines the devices on a system. The output looks something like this: ./show-devices 192.168.1.2 | grep volume /dev/sda volumeid-65 /dev/sdb ...
0
votes
2answers
48 views

Map JSON “Associative array” into CoreData with RestKit

I need to map JSON associative array of objects with RestKit(iOS). It looks like object with properties 135,145,423 and objects on it. { "135": { "name" : "Object1", "property1" : ...
0
votes
1answer
35 views

How to get an associative array from a ResultSetMapping?

I'm working on a Symfony2 project (Doctrine) and I would like to get a simple associative array from a ResultSetMapping object. This is my request : $rsm = new ResultSetMapping; ...
7
votes
1answer
112 views

Keys that spring into existence if checked with exists [duplicate]

If a perl-hash is declared like so: use warnings; use strict; my %h; I can then check for the existence of keys within this hash with exists: if (exists $h{k3}) { print "k3 exists\n"; } else { ...
0
votes
2answers
48 views

How to get the next row in mysqli result?

I want to get the next row in a cycle of a mysql result to write a list with the next and previous element code like this example: <?php $previous = null; $next = null; while ($row = ...
0
votes
1answer
64 views

AngularJS ng-repeat duplicating elements

For some odd reason the code in this jsfiddle example is duplicating the elements when iterating over an array of associative values. The input fields show the 3 names correctly but the fields are ...
-2
votes
2answers
20 views

PHP: unexpected T_VARIABLE when initializing associative array [closed]

I get the following error Parse error: syntax error, unexpected T_VARIABLE in path/queries.php on line 92 because of the array $_queryArray : private $_queryA = ""; etc... private $_queryV = ""; ...
2
votes
2answers
68 views

php like associative arrays in Groovy

I'm coming from the PHP world and I need to do do some tallying of records. In php I know this is simple, but how do I do the following in Groovy $logs = array( array( 'date' => '5-15', 'name' ...
1
vote
0answers
19 views

mysqli prepared statements - building associative array

I am working on a function using mysqli prepared statements. My goal is to build an associative array in the format $key=>$value. Since mysqli prepared statements does not have the built in tools to ...
0
votes
2answers
52 views

Using associative arrays to display records from mysql into table dynamically

I'm trying to build a table like so dynamically from query Here is a query SELECT MONTH(c.pat_added_date) AS month, COUNT(a.ana_id) as total, YEAR(c.pat_added_date) AS year FROM ...
4
votes
3answers
66 views

Do associative arrays perform like a hash table?

So imagine that you have an associative array in JavaScript as such: var hashTable = {}; hashTable["red"] = "ff0000"; hashTable["green"] = "00ff00"; hashTable["blue"] = "0000ff"; What happens when ...
-1
votes
1answer
36 views

json_decode: object to associative array

How can I convert this horrible piece of code to an associative array? :D <?php $json = file_get_contents('http://pastebin.com/NLHGMapT'); $track_data = json_decode($json); ?> <ul> ...
0
votes
1answer
50 views

associative arrays in php [closed]

I need to set up arrays to take a course number and get the associated course name and the professor teaching the course. I need to use associative arrays where the first key would be a specific ...
1
vote
1answer
53 views

How can I create js array from json object returned from php?

Javascript has this fin line of code that alerts you what type of object you are working with. It is the following: alert(Object.prototype.toString.apply(obj)) So, I am working with php and js - ...
0
votes
1answer
20 views

Are there any pitfalls to storing collections of objects with unique ids as an associative array with ids as keys, rather than as a regular array?

I've been following Backbone Collection's convention of having arrays of data objects and using _.find/findWhere etc to loop through the array, even when I wasn't using Backbone. However it seems like ...
0
votes
1answer
22 views

Print an HTML table of array values and perform basic calculations

Not sure if this is possible or if I am approaching this the right way but I have been searching around from a couple of hours now with no luck for a solution. I found a couple of examples that I ...
0
votes
0answers
24 views

Variable w/ predetermined value as the keys in associative arrays - PHP

PHP noob here, forgive me if this is a really obvious/banal question. I have looked for my answer and have yet to find it. In this example, variables $hm, $tomato and $trees are all assigned values ...
0
votes
1answer
49 views

How to setup a associative data structure in Arduino

I'm just developing a small remote control which lets me control my IR controlled devices via the Internet. All is working, but I still need to store the codes in a way that I can easily access them. ...
0
votes
3answers
77 views

How do I set word delimiters?

User's guide chapter 6.1.5 The Word Chunk A word is a string of characters delimited by space, tab, or return characters or enclosed by double quotes. Is it possible to have additional word ...
3
votes
4answers
73 views

Associative array that returns function in perl

Is it possible to create associative array that returns function? Something similar to this %a = ('first' => sub first { $x = @_; sprintf("(first %s)", $x); }); Thank you
0
votes
2answers
45 views

PHP Create Array

I'm trying to generate an array that will look like this: Array ( [123 Smith St, Begora] => L1234 [55 Crumble Road, Mosmana] => L2456 [99 Jones Ave, Gestana] => L3456 ) which will ultimately be ...
-3
votes
2answers
46 views

Associative Array in php [closed]

I want to use an associative array, and I want the key and the value to the key to be inserted by a loop. The reason is because the size of array will depend on no of keys, which will be chosen by the ...
-2
votes
1answer
40 views

Why the PDO statement error comes in this code?

I have the following code, I am unable to figure out why the PDO statement error occurs, here is my code try { $db = new PDO("mysql:dbname=imdb","username","pwd"); ...
0
votes
1answer
40 views

replace text in associative array with text from another array

I have a array like so $tags = Array ( [0] => Array ( [0] => [first_name] [last_name] [2] => [city],[state] [zipcode] ) ) i also have a list like so ...
-2
votes
1answer
25 views

javaqscript: 2d associative arrays 101

This is my first Q&A ever, so hopefully it's alright. As someone who generally picks stuff up quickly, I found the information on this topic was sporadic and generally over complicated, with many ...
0
votes
2answers
39 views

PHP - Make my query's array's key the ID

So I have this array of images pulling and the array's keys are just 0,1,2,3,4,5.... and whatnot... How can I make the value in the 'id' column of that table the key, and keep 'link' as the value. ...
3
votes
2answers
76 views

php insert value into array of arrays using foreach

I have a pretty basic question but I am stuck. I am pretty new to php and I have an array like this: $array = array( 'one' => 1, 'two' => array('key1' => 'val1','key2' => 'val2'), ...
0
votes
1answer
29 views

How to access a specific key-value from multidimensional array in smarty?

I'm a newbie in smarty. Having problems in accessing multidimensional array in smarty template. My current issue is as follows. Following is may array named $request : Array ( [form_submitted] ...
0
votes
4answers
53 views

associative arrays and array_merge

print_r($element_attrs); returns the following arrays which are gathered from an xml file. Array ( [WEATHER-SUMMARY] => Thunderstorms ) Array ( [WEATHER-SUMMARY] => Thunderstorms Likely ) ...

1 2 3 4 5 17