Welcome To Snipplr
Everyone's Recent Snippets Tagged array
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
# function *formatArrayForDisplay*
## parameters:
* **array**
a 1- or 2-dimensional array for output
* **mode**
accepts **human** or **PHP**
* **human** displays using `<pre>` tags and print_r
* **PHP** displays PHP styl...
1
1182
posted 13 years ago by daveespionage
Re-indexes an array so that the array keys count up from zero. This is useful if you have previously removed some array nodes.
0
714
posted 13 years ago by f6design
converts array (which is reference) in format
<code>
array(0 => array('id' => 1, 'name' => 'orange'), 1 => array('id' => 3, 'name' => 'banana'));
</code>
to
<code>
array(1 => array('id' => 1, 'name' => 'orange'), 3 => array('id' => 3, 'n...
0
750
posted 13 years ago by slav123
This simply takes an array and coverts it to variables. E.g. If you had an array, $array = array("key" => "value"), after running this script, $key would be "value".
0
802
posted 13 years ago by mloberg
Quite trivial but can be needed sometimes. At least I know where to look when i'll forget it
1
853
posted 14 years ago by gandreini
I wanted to pass a form submission (array) as a JSON object to another function.
Some form field were created with JS, to identify them their names have been concatenated with unique IDs, etc.
In order to access values of that JSON obj I needed to...
1
879
posted 14 years ago by iroybot
I wanted to pass a form submission (array) as a JSON object to another function.
Some form field were created with JS, to identify them their names have been concatenated with unique IDs, etc.
In order to access values of that JSON obj I needed to...
0
1002
posted 14 years ago by iroybot
A little function used to set cookies as arrays of values instead of single combinations key->value. Note that it saves values as a stack.
1
758
posted 14 years ago by claudiowebdesign
Quick and easy javascript in_array function. It's not perfect, but if you need something quick, this is it.
1
688
posted 14 years ago by cornellsteven