Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

57
votes
4answers
35k views

How do I remove objects from a javascript associative array?

Suppose I have this code: var myArray = new Object(); myArray["firstname"] = "Bob"; myArray["lastname"] = "Smith"; myArray["age"] = 25; Now if I wanted to remove "lastname"?....is there some ...
14
votes
4answers
3k views

How are associative arrays implemented in PHP?

Can someone explain how PHP implements associative arrays? What underlying data structure does PHP use? Does PHP hash the key and store it in some kind of hash map? I am curious because I was ...
11
votes
5answers
4k views

javascript array associative AND indexed?

can an array in JS be associative AND indexed? I'd like to be able to lookup an item in the array by its position or a key value.. possible?
7
votes
4answers
288 views

Are JavaScript arrays associative?

For instance, if I do a[1000000]=1; will it use memory for 1000000 elements or just for this one?
7
votes
2answers
3k views

What is the most efficient way to get the first item from an associative array in JavaScript?

I need to get just the first item (actually, just the first key) off a rather large associative array in JavaScript. Here's how I'm doing it currently (using jQuery): getKey = function (data) { ...
6
votes
3answers
13k views

Compare two Arrays Javascript - Associative

I have searched on here for a quality method to compare associative arrays in javascript. The only decent solution I have found is the PHP.JS project which has some comparative array functions. The ...
5
votes
4answers
119 views

Does Perl have an associative array type that can have any type of keys?

It seems that Perl can only have strings as the keys of a hash. (Has this been changed in a certain version of Perl?) It is very limiting to only be able to use strings as the key. What if I wanted ...
5
votes
1answer
167 views

Will Objective-C runtime release retained associative references for user?

When some codes like this: objc_setAssociatedObject ( obj, &key, val, OBJC_ASSOCIATION_RETAIN ); Do I need to call related objc_setAssociatedObject ( obj, &key, nil, ...
5
votes
4answers
974 views

How to pass an associative array as argument to a function in Bash?

How do you pass an associative array as an argument to a function? Is this possible in Bash? The code below is not working as expected: function iterateArray { local ADATA="${@}" # ...
4
votes
2answers
2k views

How to sort an associative array by its values in Javascript?

If I have the associative array: array["sub2"] = 1; array["sub0"] = -1; array["sub1"] = 0; array["sub3"] = 1; array["sub4"] = 0; Then what is the most elegant way to sort (descending) by its values ...
4
votes
2answers
711 views

Operator precedence and associativity in a parser (Haskell)

I am trying to extend a recursive-descent parser to handle new operators and make them associate correctly. Originally there were only four operators (+ - / *) and they all had the same precedence. ...
4
votes
2answers
2k views

How do I append to an alist in scheme?

Adding an element to the head of an alist (Associative list) is simple enough: > (cons '(ding . 53) '((foo . 42) (bar . 27))) ((ding . 53) (foo . 42) (bar . 27)) Appending to the tail of an ...
3
votes
2answers
119 views

How to make a JQuery associative array from a HTML unordered list

Currently in my JQuery script I have a hard coded array: var arrayList = [ {"id":"1","category":"foo1","title":"bar1","image":"images/foobar1.gif"}, ...
3
votes
2answers
221 views

how to create convert a simple array to associative array

What is the fastest way to convert a simple array to an associative array in php so that values can be checked in the isset($array[$value])? ie, fastest way to do the following conversion $array = ...
3
votes
2answers
1k views

how to get and use associative array from YAML to action in symfony framework 1.4.8

Ive got in app.yml some configration data, and I want to foreach them in action. I try do this by get them by sfConfig::get('app_datas') but it fails. Lets show them in details: YAML: all: datas: ...
3
votes
1answer
1k views

Oracle Associative Array TYPE is not able to use in USING statement (If TYPE is declared within Package)

If 'Associative Array variable' is declared globally, able to use that in OPEN CURSOR USING statement. If 'Associative Array variable' is declared within package, while use in OPEN CURSOR USING ...
2
votes
1answer
25 views

python sqlalchemy get column names dynamically?

#!/usr/bin/env python # -*- coding: utf-8 -*- from sqlalchemy import create_engine connection = create_engine('mysql://user:passwd@localhost:3306/db').connect() result = connection.execute("select ...
2
votes
2answers
126 views

Troubleshooting “Notice: Undefined index”, but index appears to be defined

I have this piece of code: <?php $pattern = "/<span\b[^>]*>(.*?)</"; $html = file_get_contents("http://www.bicicletapublica.com.ar/mapa.aspx"); $results = array(); ...
2
votes
5answers
96 views

php - associative array index naming conventions

In PHP, do associative array indexes need to follow that same rules and variable names (can't start with a number, etc.) I am looking for both working and philosophical answers to this question.
2
votes
5answers
121 views

C++ associative containers - why doesn't the standard defines methods to exchange and replaces keys?

I need to replace specific key values, while the rest of the value_type is left untouched. What I actually need to do, is copy the value, erase the entry and insert it with changed key value again. ...
2
votes
3answers
87 views

Expression evaluation in C

#include <stdio> int main(){ int x = 4; int y = 3; int z; z = x---y; printf("%d" , z); return 0; } The gcc compiler in Linux Mandriva ...
2
votes
3answers
653 views

php associative array key order (not sort)

My array: $data = array('two' => 2, 'one' => 1, 'three' => 3); Now, with when I iterate the array, the first value that will come up will probably be $data['two'] // = 2 @ index[0] ...
2
votes
2answers
878 views

How to sort associative array in Javascript?

I need to sort associative array by JS for one of my projects. I found this function, that works great in firefox, but unfortunately it doesnt work in IE8, OPERA, CHROME... Cant find the way to make ...
2
votes
4answers
436 views

Summarize object area with a Hash in Ruby

require 'sketchup' entities = Sketchup.active_model.entities summa = Hash.new for face in entities next unless face.kind_of? Sketchup::Face if (face.material) ...
2
votes
3answers
1k views

How do you traverse and store XML in Blackberry Java app?

I'm having a problem accessing the contents of an XML document. My goal is this: Take an XML source and parse it into a fair equivalent of an associative array, then store it as a persistable object. ...
2
votes
1answer
632 views

How do you print an associative array in dtrace?

The question pretty much sums it up. "dtrace 'print an associative array'" has exactly one google hit and the similar searches are equally useless. EDIT: If I were to use an aggregation, I'm not ...
2
votes
1answer
127 views

Associative array lookup in memory

Its just a question out of curiosity. Suppose we have an associative array A. How is A["hello"] actually evaluated , as in how does system map to a memory location using index "hello"?
2
votes
3answers
104 views

Create a copy of a result row

How can I copy an array that has other associative arrays in it? I am talking about a result set returned from a mysql_fetch_assoc. So say I have a structure like this... connect $result = query; ...
2
votes
1answer
175 views

*FIXED* Good with PHP arrays? HELP!

I know there are a lot of smart people, so prove me right! I want to combine arrays where similar named keys merge together to form a single array. See example: [Bob] => Array ( [BobsDetails] ...
1
vote
1answer
25 views

Save Informations as a Data Net

My aim is to write an intelligent ChatBot. He should save known informations likely to the human brain. That is why I am looking for a filetype wich stores data as a net of connected keywords. What ...
1
vote
1answer
74 views

Strange behavior with array as static class property

Can I have an associative array as a property of a class? I have been trying but I get very strange results on something like this: class MyClass { public static $quality = array('blue' => 20, ...
1
vote
3answers
34 views

Creating An Associative Multi Dimensional Array from loop in PHP

How can I create an array like the following in PHP from a database result set using a loop: Array ( [T] => Array ( [0] => Array ( ...
1
vote
3answers
56 views

Simplest way to print out comma seperated of an assoc array column in PHP (from MYSQL)

I have a mysql fetch that is populating an associative array with columns from the DB. One of the columns names is AMOUNT. so it looks like this: Array ( [0] => Array ( [ID] => 259 [YEARMONTH] ...
1
vote
5answers
93 views

How to filter an associative arrays using array of keys in PHP?

I have an associative arrays and an array of keys. $A = array('a'=>'book', 'b'=>'pencil', 'c'=>'pen'); $B = array('a', 'b'); How I build an associative array from all element of $A where ...
1
vote
2answers
57 views

Serializing a Javascript object with contained arrays to json?

I have a javascript object that contains a few objects that contain associative arrays. I've been trying to use the json2.js library's stringify function but the output doesn't contain the arrays held ...
1
vote
2answers
184 views

JavaScript Object efficient for an associate array (AKA Map)? What alternatives are there?

I am new to JavaScript and lately been coding in PHP which I am looking to port to JavaScript. PHP has a Map implemented directly into its Array container class, which does not exists in the default ...
1
vote
2answers
64 views

I can't get a value to stay in my $_SESSION variable

I am trying to get values out of an indexed array, but when I use a variable as the index (which is equal to an index in the array), it does not appear. I get an Undefined Index Error. Why is this ...
1
vote
3answers
132 views

Creating an associative array with random values PHP

I am trying to generate an associate array with random values. For example, if I give you this string: something, anotherThing, foo, bar, baz (the length of the string is dynamic - so there could ...
1
vote
2answers
1k views

PHP Split Delimited String into Key/Value Pairs (Associative Array)

I have a string like so: key1\value1\key2\value2\key3\value3\key4\value4\key5\value5 And I'd like it to be an associative array so that I can do: echo $myArray['key1']; // prints value1 echo ...
1
vote
3answers
400 views

How do I create an associative array from dynamic variables in php?

I have this code: $people=array(); $i=0; foreach ($xml->xpath('//person') as $character) { if ($character->status!="Active"){ $people[$i]['fullname']=(string)$character->fullname; ...
1
vote
3answers
774 views

Is it possible to declare associative array in the function caller?

I want to declare associative array in the argument of function in - is it possible?? this code it's not working.. <a href="javascript:functionName(new ...
1
vote
4answers
475 views

CSV to Associative Array

I've seen numerous examples on how to take a CSV file and then create an associative array with the headers as the keys. For example: Brand,Model,Part,Test Honda,Civic,123,244 Honda,Civic,135,434 ...
1
vote
2answers
228 views

How do I remove associative array from javascript?

I found the way to delete an item of associative array by : delete array['knownkey']; but what about delete the whole associative array,I mean just like empty an normal array: the way to empty an ...
1
vote
1answer
280 views

how combine multiple arrays into a single associate array using the arrays as keys

I have 2 arrays that i would like to loop through and combine into an associative array. I would like to use the 2 arrays as the keys for the new associative array. I am new to php so any and all help ...
1
vote
3answers
355 views

Associative Arrays/Object - getting values with dot notation

I don't really get why this isn't working: thing = { img78:{ exifmanufacturer:"Canon", exifmodel:"Canon EOS 450D", exifexposuretime:"1/125", exiffstop:"71/10", exifiso:"200"}, img79:{ ...
1
vote
2answers
878 views

sort associative array in awk - help?

I have an associative array in awk that gets populated like this... chr_count[$3]++ When I try to print my chr_counts I use this: for (i in chr_count) { print i,":",chr_count[i]; } But not ...
1
vote
2answers
121 views

PHP search array and add content on position where id's are equal

I have 2 assoc. Arrays which have the same structure, but only one ID is identical. I need to add content to the MainArray from the IncludeArray everytime the specific ID is identical. Here are a ...
1
vote
1answer
2k views

Creating 2-D matrix in php

The thing is I have to create a 2D matrix in php where each row and column must have a key. I tried to do this but what happens is that a 2-D array is created which does not resemble a matrix. I used ...
1
vote
2answers
733 views

How can I convert a PHP function's parameter list to an associative array?

I want to convert the arguments to a function into an associative array with keys equal to the parameter variable names, and values equal to the parameter values. PHP: function my_function($a, $b, ...
1
vote
2answers
2k views

ASP print out array

I would like to print out the data, for debugging purpose. Data format would be like this cntryCode = resArray("COUNTRYCODE") business = resArray("BUSINESS") ' Payer's business name. shipToName ...

1 2