The array-splice tag has no wiki summary.
6
votes
2answers
109 views
PHP - Need help inserting arrays into Associative arrays at given keys
Ok, so I have an array like so:
$buttons = array(
'home' => array(
'title' => $txt['home'],
'href' => $scripturl,
'show' => true,
'sub_buttons' => ...
5
votes
1answer
155 views
Funny behaviour of Array.splice()
I was experimenting with the splice() method in jconsole
a = [1,2,3,4,5,6,7,8,9,10]
1,2,3,4,5,6,7,8,9,10
Here, a is a simple array from 1 to 10.
b = ['a','b','c']
a,b,c
And this is b
...
4
votes
7answers
81 views
PHP to form string like “A, B, C, and D” from array values
Given the following array:
Array
(
[143] => Car #1
[144] => Car #2
[145] => Car #3
)
I am currently using this
implode(', ', array_values($car_names))
to generate a string ...
4
votes
3answers
167 views
Javascript: What's a better way to splice arrays together than what I'm using now?
var newlist = list.slice( 0, pos ).concat( tasks ).concat( list.slice( pos ) );
This makes me shudder just looking at it.
3
votes
4answers
250 views
How can I remove a single array member using array_splice in php?
I think I may not understand correctly how array_splice is supposed to work. My understanding is that the first param is your initial array, the second param is the element to start at, and the third ...
2
votes
2answers
166 views
as3: does array splice delete an object completely?
I have a lot of display objects in an array that I'm constantly adding and removing from stage. When removed they are not used anymore.
Considering the displayObject is not on the display list, and ...
2
votes
3answers
78 views
Confusion with javascript array.splice()
I'm really confused about this.
My understanding was that array.splice(startIndex, deleteLength, insertThing) would insert insertThing into the result of splice() at startIndex and delete ...
1
vote
3answers
115 views
jQuery each array problem
I'm looping through an array using the jquery each function. I assign a temp variable for it to loop through instead of the actual array itself as I am modifying the original array using splice. ...
1
vote
3answers
244 views
Why does splice return a string vice array?
I'm trying to splice array two from the two-dimensional array arr.
var one = ["a","b"];
var two = ["c","d"];
var thr = ["e","f"];
var arr = [one,two,thr];
Here are my two unsuccessful ...
1
vote
2answers
431 views
PHP array_splice keep previous keys
I have the array with specific keys. I want to get the first 5 array elements. I use array_splice(). All OK, but keys in the new array is 0, 1, 2, 3 ,4. And I want to keep the previous array keys. I ...
0
votes
3answers
65 views
javascript array splice without index
I was wondering about this piece of code:
var numbers, _ref;
numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
[].splice.apply(numbers, [3, 4].concat(_ref = [-3, -4, -5, -6])), _ref;
alert(numbers);
From ...
0
votes
0answers
41 views
How to distribute splice array into textboxes
sorry for my bad english
i have a function that must splice an array dynamically and I need to distribute it to text boxes but all I get is the last part of spliced array.
/* sample values:
list = ...
0
votes
1answer
31 views
Output Array Elements in Certain Manner
Admin: Please create image urls as images
I'm trying to achieve the following output:
//
Joseph Dickinson
Title: Need Xbox 360
Comment: I need one quick!
on 2011-09-15
John Doe ...
0
votes
1answer
232 views
.splice() array with array of non-sequential indexes - javascript
I have an array like this
Array['one','two','three','four','five']
and I have an array like this
Array['2','4','0']
indicating the indexes of the elements in the first array I wish to remove or ...
0
votes
3answers
389 views
Splice arrays in Numpy?
I'd like to perform a splice of sorts in Numpy. Let's say I have two arrays, a and b:
>>> a
array([[ 1, 10],
[ 2, 20],
[ 5, 30]])
>>> b
array([[ 1, 11],
[ 3, ...
0
votes
2answers
164 views
array_splice with multidimensional arrays?
Okay so I'm fairly new to PHP and I am currently experimenting with arrays. As an example, lets assume this is my array:
$t1 = array (
"basicInfo" => array (
"The Sineps",
"December ...
0
votes
3answers
957 views
array_splice() - Numerical Offsets of Associative Arrays
I'm trying to do something but I can't find any solution, I'm also having some trouble putting it into works so here is a sample code, maybe it'll be enough to demonstrate what I'm aiming for:
$input ...