An associative array is an abstract data type composed of a collection of unique keys mapped to a collection of values.
0
votes
1answer
26 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
19 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
17 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
17 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
28 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
50 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
65 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
42 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
43 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
32 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
2answers
34 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
20 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
30 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
46 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
18 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
51 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 )
...
4
votes
2answers
48 views
Access newly added key=>value in associative array during loop
I am trying to add a key=>value pair to an array while using a foreach loop, when that value is added the foreach loop needs to process the new key=>value pair.
$array = array(
'one' => 1,
...
0
votes
2answers
24 views
How to change separate associative arrays to something usable such as one indexed array?
print_r($element_attrs); returns the following arrays which are gathered from an xml file.
Array ( [WEATHER-SUMMARY] => Increasing Clouds )
Array ( [WEATHER-SUMMARY] => Thunderstorms )
Array ...
0
votes
0answers
27 views
AJAX rearrangement of post display order
I'm not looking for a full walk-through here (although that's quite welcome :p), but if anyone can get me started with a tutorial / article or has suggestions for plugins / libraries, that would help. ...
0
votes
3answers
58 views
What's the error in my foreach loop?
Following is my multidimensional array named $prev_map_data:
Array
(
[0] => Array
(
[class_id] => 2
[class_name] => II
[class_checked] => 1
...
0
votes
2answers
40 views
What's the error in my foreach loop over multidimensional array?
Following is my multidimensional array named $prev_map_data:
Array
(
[0] => Array
(
[class_id] => 2
[class_name] => II
[class_checked] => 1
...
2
votes
2answers
40 views
How to access the values from inner key of associative array in PHP?
Following is may multidimensional array named $form_data:
Array
(
[form_submitted] => yes
[teacher_id] => 3807f31f8c4357bbb56662047529dcde
[cs_map_ids] => Array
(
...
0
votes
3answers
37 views
How to change the keys of multidimensional array in PHP?
My multidimensional array named $cs_map_data is as follows :
Array
(
[2] => Array
(
[class_id] => 2
[class_name] => II
[class_checked] => 0
...
1
vote
5answers
71 views
PHP Count Number of True Values in a Boolean Array
I have an associative array in which I need to count the number of boolean true values within.
The end result is to create an if statement in which would return true when only one true value exists ...
-1
votes
3answers
53 views
How to insert a new key-value pair in an associative array in PHP? [closed]
I've an associative array named $classes_data as follows:
Array
(
[2] => Array
(
[class_id] => 2
[class_name] => II
[subjects] => Array
...
0
votes
2answers
35 views
php - intialize array keys and insert values
I want to create an array like a "table" with my headers as my keys, say name, age address.
I want to initialize my keys and insert new values (Imagine an SQL table). Is there a nicer way to do this?
...
0
votes
0answers
51 views
Sending multi-dimensional associative arrays with HTML forms
What is best practice for sending multidimensional arrays from an HTML form using either GET or POST? I couldn't find anything from Googling..
I've done things like this (name="array[]") when working ...
0
votes
3answers
24 views
Is there something like keypath in an associative array in PHP?
I want to dissect an array like this:
[
"ID",
"UUID",
"pushNotifications.sent",
"campaigns.boundDate",
"campaigns.endDate",
"campaigns.pushMessages.sentDate",
...
0
votes
0answers
121 views
Which hash table implementation in C suits me best? [closed]
I have a fairly simple use case for a hash table. Besides creating and freeing the hash table itself, i pretty much only need add & find & delete for int and string keys. I prioritize speed ...
0
votes
1answer
64 views
How can I parse JSON output from Facebook php graph api?
I have the this simple code from the example sdk facebook:
if ($user) {
try {
$user_profile = $facebook->api('/me/friends');
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}
...
2
votes
1answer
44 views
PHP - Sorting a multidimensional array - issues [duplicate]
I'm currently working on a project that uses JSON converted into an associative multi-dimensional array, and am having a few issues. My array looks like this:
Array
(
[IS-4] => Array
(
...
0
votes
5answers
40 views
cleaner way to echo all elements of an array
Ive got an associative array like this
$array = array (
"name" => "bob",
"age" => "22",
"sex" => "male"
)
and to return this data to the screen im using
echo $array['name'] ...
0
votes
0answers
30 views
creating an array php + dbase
I have several DBF files from an old ERP-POS system (currently running) and i'm trying to extract some info to use in a web site
i'm creating an array with the product code and his current stock from ...
0
votes
1answer
38 views
Changing an assoc array value in PHP loop where key equals something
I have a situation where I am looping through a result set from the DB in MYSQL:
$result = mysql_query("SELECT * FROM orders ORDER BY repID") or die('Query failed!');
while(false !== ($row = ...
1
vote
3answers
39 views
Preferred way of creating “dictionary of dictionaries” in JavaScript
Assume that I need a JavaScript dictionary (object/ associative array) which I need to access as follows:
var value = dict[foo][bar][buz][qux]; // this could go on
Which is the best way to ...
0
votes
2answers
28 views
How to write this json data as an associative array in php?
DETAILS
I am getting the following json data back via an ajax response.
"result":[{"word":"jquery","wordID":"1"},{"word":"github","wordID":"2"}]
I am trying to understand the information I've ...
0
votes
2answers
40 views
Populating an object's properties
Consider following code:
$ob=new MyObject();
$ob->name=$_GET['name'];
$ob->email=$_GET['email'];
...
$ob->foo=$_GET['foo'];
Is there any cleaner way (language mechanism) to populating an ...
2
votes
1answer
46 views
Defaulted hash keys disappearing in Perl
I think my Perl is getting rusty :)
This following script is supposed to iterate through a directory of text files containing LDAP records for a particular user to extract specific information. I am ...
-1
votes
3answers
63 views
Coverting String to PHP Associative Array
How can i convert this string
$str = "array('3'=>'wwm','1'=>'wom')";
to real php associative array...
0
votes
1answer
39 views
Will V8 Generate Hidden Classes for an Object Used as an Associative Array? (Large number of properties)
I am trying to implement a straightforward associative array (no duplicates) with string keys and instances of my own "classes" as values in JavaScript. I am happy with expected O(1) behaviour of a ...
0
votes
5answers
73 views
add the values of two different associative arrays in php . display unique key-values too in the result array [duplicate]
i need to merge two associative arrays which may or may not contain same key,if key is same the values need to added and stored in the resultant array
$array1 = array(
'a' => 5,
...
0
votes
1answer
38 views
How to insert a new key and value in multidimensional array?
Following is the output of my multidimensional array $csmap_data
Array
(
[0] => Array
(
[cs_map_id] => 84
[cs_subject_id] => 1
)
[1] => ...
0
votes
1answer
9 views
I need to sort by price, and then by time for identical prices multidimensional associated array
I need to sort by price, and then for things with identical prices. I have the sort by price. Here is the array and sort that I have:
<?php
$a = array(
1 => array('price' => ...
0
votes
1answer
44 views
Ignore value from assoc array when display
$result = mysql_query($sql_result);
$newArray = array();
$index=0;
while($row = mysql_fetch_assoc($result)){
$newArray[$index] = $row;
$index++;
}
I wanna ...
-1
votes
2answers
59 views
Create array from dynamic variables PHP [closed]
I am working with the following code. Every time a line is ready form the file, I need to add it to an associative array
$fp = fopen("printers.txt", "r"); // Open ptinters.txt to be read by fgets()
...
0
votes
2answers
37 views
Converting a non-associative list of arrays to an associative array of arrays
I have a list of arrays (or objects, they are coming from a database via the PDO fetchAll() function, so both options are OK for me). I wish to convert the list of arrays to an associative array of ...
0
votes
4answers
48 views
Ordering multidimensional associative arrays
I want to order this array by price AND keep my keys without them being changed.
Here is what I have been working with.
<?php
$a = array(
...
1
vote
3answers
72 views
How can i have a associative array with many values
I have an album with title, year it came out and songs on the album.
My array is set up like this:
std::string alb_name[256]['title', 'year', 'songs'];
but i want the songs associative array to ...
2
votes
1answer
51 views
Ruby: Sorting hash by key and tie-breaking on value
Is it possible to take a Hash in ruby such as
{"aaa" => 255, "abc" => 255, "acb" => 255, "dcv" => 2300, "abe" => 1}
And sort it in into an Array like such
[["dcv", 2300], ["aaa", ...
12
votes
4answers
181 views
How does JavaScript [] really work?
I'm writing a JavaScript interpreter for extremely resource-constrained embedded devices (http://www.espruino.com), and every time I think I have implemented some bit of JavaScript correctly I realise ...




