PHP How to add multiple values to an multideminsional array
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I am going to try to explain what I am trying to accomplish before sharing the code so you will understand. I am trying to add multiple values to a multidimensional array. So I have one multidimensional array and want to add more than one value to each array in the multidimensional array. Currently, I can add one value by creating another array, and adding the array's together. I have looked up multiple answers, but they don't work with my loops and I don't understand how to make them work in my application, and some of them only explain it with adding one value, not multiple.
Code(PHP):
foreach ($csv as $row) {
$purchasePrice = str_replace(',', '.', $row[1]);
$object = new Product($purchasePrice, 10, 21);
$calculatedValues= $object->margePercentage;
}
foreach($calculatedValues as $key => $val){ //Adds the 2 array's together
$csv[$key] = $val;
}
The output of this code is:
Array
(
[0] => Array
(
[0] => id
[1] => eur
[2] => title
[3] => marge
)
[1] => Array
(
[0] => 25200
[1] => 30,74
[2] => Humming teddy bear, verbetert kwaliteit van slaap
[3] => 19.261617724033
)
[2] => Array
(
[0] => 25201
[1] => 30,74
[2] => Humming teddy bear, verbetert kwaliteit van slaap, circa 45cm
[3] => 19.261617724033
)
[3] => Array
(
[0] => 25202
[1] => 26,06
[2] => Humming teddy bear, verbetert kwaliteit van slaap, circa 28x28cm
[3] => 18.567221241214
)
As you can see, it works fine with just 1 value. The foreach creates a new object for each $row[1]
(price) and calculates a percentage which is not relevant but happens in the product object. Then I add the value to $calculatedValues
.
Now I want to add multiple values and not just one($object->margePercentage
). I would like to have an output like this:
Array
(
[0] => Array
(
[0] => id
[1] => eur
[2] => title
[3] => -2.6572
[4] => value2
)
[1] => Array
(
[0] => 25200
[1] => 30,74
[2] => Humming teddy bear, verbetert kwaliteit van slaap
[3] => 19.261617724033
[4] => value2
)
[2] => Array
(
[0] => 25201
[1] => 30,74
[2] => Humming teddy bear, verbetert kwaliteit van slaap, circa 45cm
[3] => 19.261617724033
[4] => value2
)
[3] => Array
(
[0] => 25202
[1] => 26,06
[2] => Humming teddy bear, verbetert kwaliteit van slaap, circa 28x28cm
[3] => 18.567221241214
[4] => value2
)
value2
in this instance is just to show where I would like to have the value be in the array, value2 will be another calculation which is made in the product object.
I hope I can find a solution to this since I am stuck quite a while now, in the meantime I am going to study more about arrays.
If there are any more questions regarding my code or explanation, please feel free to ask me.
Thanks again for reading my question.
Cheers Cody
php arrays
|
show 3 more comments
I am going to try to explain what I am trying to accomplish before sharing the code so you will understand. I am trying to add multiple values to a multidimensional array. So I have one multidimensional array and want to add more than one value to each array in the multidimensional array. Currently, I can add one value by creating another array, and adding the array's together. I have looked up multiple answers, but they don't work with my loops and I don't understand how to make them work in my application, and some of them only explain it with adding one value, not multiple.
Code(PHP):
foreach ($csv as $row) {
$purchasePrice = str_replace(',', '.', $row[1]);
$object = new Product($purchasePrice, 10, 21);
$calculatedValues= $object->margePercentage;
}
foreach($calculatedValues as $key => $val){ //Adds the 2 array's together
$csv[$key] = $val;
}
The output of this code is:
Array
(
[0] => Array
(
[0] => id
[1] => eur
[2] => title
[3] => marge
)
[1] => Array
(
[0] => 25200
[1] => 30,74
[2] => Humming teddy bear, verbetert kwaliteit van slaap
[3] => 19.261617724033
)
[2] => Array
(
[0] => 25201
[1] => 30,74
[2] => Humming teddy bear, verbetert kwaliteit van slaap, circa 45cm
[3] => 19.261617724033
)
[3] => Array
(
[0] => 25202
[1] => 26,06
[2] => Humming teddy bear, verbetert kwaliteit van slaap, circa 28x28cm
[3] => 18.567221241214
)
As you can see, it works fine with just 1 value. The foreach creates a new object for each $row[1]
(price) and calculates a percentage which is not relevant but happens in the product object. Then I add the value to $calculatedValues
.
Now I want to add multiple values and not just one($object->margePercentage
). I would like to have an output like this:
Array
(
[0] => Array
(
[0] => id
[1] => eur
[2] => title
[3] => -2.6572
[4] => value2
)
[1] => Array
(
[0] => 25200
[1] => 30,74
[2] => Humming teddy bear, verbetert kwaliteit van slaap
[3] => 19.261617724033
[4] => value2
)
[2] => Array
(
[0] => 25201
[1] => 30,74
[2] => Humming teddy bear, verbetert kwaliteit van slaap, circa 45cm
[3] => 19.261617724033
[4] => value2
)
[3] => Array
(
[0] => 25202
[1] => 26,06
[2] => Humming teddy bear, verbetert kwaliteit van slaap, circa 28x28cm
[3] => 18.567221241214
[4] => value2
)
value2
in this instance is just to show where I would like to have the value be in the array, value2 will be another calculation which is made in the product object.
I hope I can find a solution to this since I am stuck quite a while now, in the meantime I am going to study more about arrays.
If there are any more questions regarding my code or explanation, please feel free to ask me.
Thanks again for reading my question.
Cheers Cody
php arrays
Possible duplicate of PHP add elements to multidimensional array with array_push
– dns_nx
Jan 3 at 13:57
stackoverflow.com/questions/15024616/…
– Zeljka
Jan 3 at 13:57
Is there a specific reason you're not using objects instead? Multidimensional array is a little outdated
– Joppe De Cuyper
Jan 3 at 13:57
@JoppeDeCuyper Because from a array I can generate a csv file
– Cody
Jan 3 at 14:08
@dns_nx I have already checked that one out, but I don't seem to find it helpful same as regards to Zeljika
– Cody
Jan 3 at 14:09
|
show 3 more comments
I am going to try to explain what I am trying to accomplish before sharing the code so you will understand. I am trying to add multiple values to a multidimensional array. So I have one multidimensional array and want to add more than one value to each array in the multidimensional array. Currently, I can add one value by creating another array, and adding the array's together. I have looked up multiple answers, but they don't work with my loops and I don't understand how to make them work in my application, and some of them only explain it with adding one value, not multiple.
Code(PHP):
foreach ($csv as $row) {
$purchasePrice = str_replace(',', '.', $row[1]);
$object = new Product($purchasePrice, 10, 21);
$calculatedValues= $object->margePercentage;
}
foreach($calculatedValues as $key => $val){ //Adds the 2 array's together
$csv[$key] = $val;
}
The output of this code is:
Array
(
[0] => Array
(
[0] => id
[1] => eur
[2] => title
[3] => marge
)
[1] => Array
(
[0] => 25200
[1] => 30,74
[2] => Humming teddy bear, verbetert kwaliteit van slaap
[3] => 19.261617724033
)
[2] => Array
(
[0] => 25201
[1] => 30,74
[2] => Humming teddy bear, verbetert kwaliteit van slaap, circa 45cm
[3] => 19.261617724033
)
[3] => Array
(
[0] => 25202
[1] => 26,06
[2] => Humming teddy bear, verbetert kwaliteit van slaap, circa 28x28cm
[3] => 18.567221241214
)
As you can see, it works fine with just 1 value. The foreach creates a new object for each $row[1]
(price) and calculates a percentage which is not relevant but happens in the product object. Then I add the value to $calculatedValues
.
Now I want to add multiple values and not just one($object->margePercentage
). I would like to have an output like this:
Array
(
[0] => Array
(
[0] => id
[1] => eur
[2] => title
[3] => -2.6572
[4] => value2
)
[1] => Array
(
[0] => 25200
[1] => 30,74
[2] => Humming teddy bear, verbetert kwaliteit van slaap
[3] => 19.261617724033
[4] => value2
)
[2] => Array
(
[0] => 25201
[1] => 30,74
[2] => Humming teddy bear, verbetert kwaliteit van slaap, circa 45cm
[3] => 19.261617724033
[4] => value2
)
[3] => Array
(
[0] => 25202
[1] => 26,06
[2] => Humming teddy bear, verbetert kwaliteit van slaap, circa 28x28cm
[3] => 18.567221241214
[4] => value2
)
value2
in this instance is just to show where I would like to have the value be in the array, value2 will be another calculation which is made in the product object.
I hope I can find a solution to this since I am stuck quite a while now, in the meantime I am going to study more about arrays.
If there are any more questions regarding my code or explanation, please feel free to ask me.
Thanks again for reading my question.
Cheers Cody
php arrays
I am going to try to explain what I am trying to accomplish before sharing the code so you will understand. I am trying to add multiple values to a multidimensional array. So I have one multidimensional array and want to add more than one value to each array in the multidimensional array. Currently, I can add one value by creating another array, and adding the array's together. I have looked up multiple answers, but they don't work with my loops and I don't understand how to make them work in my application, and some of them only explain it with adding one value, not multiple.
Code(PHP):
foreach ($csv as $row) {
$purchasePrice = str_replace(',', '.', $row[1]);
$object = new Product($purchasePrice, 10, 21);
$calculatedValues= $object->margePercentage;
}
foreach($calculatedValues as $key => $val){ //Adds the 2 array's together
$csv[$key] = $val;
}
The output of this code is:
Array
(
[0] => Array
(
[0] => id
[1] => eur
[2] => title
[3] => marge
)
[1] => Array
(
[0] => 25200
[1] => 30,74
[2] => Humming teddy bear, verbetert kwaliteit van slaap
[3] => 19.261617724033
)
[2] => Array
(
[0] => 25201
[1] => 30,74
[2] => Humming teddy bear, verbetert kwaliteit van slaap, circa 45cm
[3] => 19.261617724033
)
[3] => Array
(
[0] => 25202
[1] => 26,06
[2] => Humming teddy bear, verbetert kwaliteit van slaap, circa 28x28cm
[3] => 18.567221241214
)
As you can see, it works fine with just 1 value. The foreach creates a new object for each $row[1]
(price) and calculates a percentage which is not relevant but happens in the product object. Then I add the value to $calculatedValues
.
Now I want to add multiple values and not just one($object->margePercentage
). I would like to have an output like this:
Array
(
[0] => Array
(
[0] => id
[1] => eur
[2] => title
[3] => -2.6572
[4] => value2
)
[1] => Array
(
[0] => 25200
[1] => 30,74
[2] => Humming teddy bear, verbetert kwaliteit van slaap
[3] => 19.261617724033
[4] => value2
)
[2] => Array
(
[0] => 25201
[1] => 30,74
[2] => Humming teddy bear, verbetert kwaliteit van slaap, circa 45cm
[3] => 19.261617724033
[4] => value2
)
[3] => Array
(
[0] => 25202
[1] => 26,06
[2] => Humming teddy bear, verbetert kwaliteit van slaap, circa 28x28cm
[3] => 18.567221241214
[4] => value2
)
value2
in this instance is just to show where I would like to have the value be in the array, value2 will be another calculation which is made in the product object.
I hope I can find a solution to this since I am stuck quite a while now, in the meantime I am going to study more about arrays.
If there are any more questions regarding my code or explanation, please feel free to ask me.
Thanks again for reading my question.
Cheers Cody
php arrays
php arrays
edited Jan 3 at 14:11
Cody
asked Jan 3 at 13:55


CodyCody
52
52
Possible duplicate of PHP add elements to multidimensional array with array_push
– dns_nx
Jan 3 at 13:57
stackoverflow.com/questions/15024616/…
– Zeljka
Jan 3 at 13:57
Is there a specific reason you're not using objects instead? Multidimensional array is a little outdated
– Joppe De Cuyper
Jan 3 at 13:57
@JoppeDeCuyper Because from a array I can generate a csv file
– Cody
Jan 3 at 14:08
@dns_nx I have already checked that one out, but I don't seem to find it helpful same as regards to Zeljika
– Cody
Jan 3 at 14:09
|
show 3 more comments
Possible duplicate of PHP add elements to multidimensional array with array_push
– dns_nx
Jan 3 at 13:57
stackoverflow.com/questions/15024616/…
– Zeljka
Jan 3 at 13:57
Is there a specific reason you're not using objects instead? Multidimensional array is a little outdated
– Joppe De Cuyper
Jan 3 at 13:57
@JoppeDeCuyper Because from a array I can generate a csv file
– Cody
Jan 3 at 14:08
@dns_nx I have already checked that one out, but I don't seem to find it helpful same as regards to Zeljika
– Cody
Jan 3 at 14:09
Possible duplicate of PHP add elements to multidimensional array with array_push
– dns_nx
Jan 3 at 13:57
Possible duplicate of PHP add elements to multidimensional array with array_push
– dns_nx
Jan 3 at 13:57
stackoverflow.com/questions/15024616/…
– Zeljka
Jan 3 at 13:57
stackoverflow.com/questions/15024616/…
– Zeljka
Jan 3 at 13:57
Is there a specific reason you're not using objects instead? Multidimensional array is a little outdated
– Joppe De Cuyper
Jan 3 at 13:57
Is there a specific reason you're not using objects instead? Multidimensional array is a little outdated
– Joppe De Cuyper
Jan 3 at 13:57
@JoppeDeCuyper Because from a array I can generate a csv file
– Cody
Jan 3 at 14:08
@JoppeDeCuyper Because from a array I can generate a csv file
– Cody
Jan 3 at 14:08
@dns_nx I have already checked that one out, but I don't seem to find it helpful same as regards to Zeljika
– Cody
Jan 3 at 14:09
@dns_nx I have already checked that one out, but I don't seem to find it helpful same as regards to Zeljika
– Cody
Jan 3 at 14:09
|
show 3 more comments
1 Answer
1
active
oldest
votes
I may be missing something but I believe you can remove the second for loop in which you assign the extra value to your $csv
elements and do it in the same loop - even for more values.
Consider the following:
foreach ($csv as $key => $row) {
$purchasePrice = str_replace(',', '.', $row[1]);
$object = new Product($purchasePrice, 10, 21);
$csv[$key] = $object->margePercentage;
$csv[$key] = $object->getValue2(); // or whatever function needed for get your value2
}
If you want you can also use &
as foreach($csv as &$row)
and then just add element to row as $row
.
Hope that helps!
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54023708%2fphp-how-to-add-multiple-values-to-an-multideminsional-array%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I may be missing something but I believe you can remove the second for loop in which you assign the extra value to your $csv
elements and do it in the same loop - even for more values.
Consider the following:
foreach ($csv as $key => $row) {
$purchasePrice = str_replace(',', '.', $row[1]);
$object = new Product($purchasePrice, 10, 21);
$csv[$key] = $object->margePercentage;
$csv[$key] = $object->getValue2(); // or whatever function needed for get your value2
}
If you want you can also use &
as foreach($csv as &$row)
and then just add element to row as $row
.
Hope that helps!
add a comment |
I may be missing something but I believe you can remove the second for loop in which you assign the extra value to your $csv
elements and do it in the same loop - even for more values.
Consider the following:
foreach ($csv as $key => $row) {
$purchasePrice = str_replace(',', '.', $row[1]);
$object = new Product($purchasePrice, 10, 21);
$csv[$key] = $object->margePercentage;
$csv[$key] = $object->getValue2(); // or whatever function needed for get your value2
}
If you want you can also use &
as foreach($csv as &$row)
and then just add element to row as $row
.
Hope that helps!
add a comment |
I may be missing something but I believe you can remove the second for loop in which you assign the extra value to your $csv
elements and do it in the same loop - even for more values.
Consider the following:
foreach ($csv as $key => $row) {
$purchasePrice = str_replace(',', '.', $row[1]);
$object = new Product($purchasePrice, 10, 21);
$csv[$key] = $object->margePercentage;
$csv[$key] = $object->getValue2(); // or whatever function needed for get your value2
}
If you want you can also use &
as foreach($csv as &$row)
and then just add element to row as $row
.
Hope that helps!
I may be missing something but I believe you can remove the second for loop in which you assign the extra value to your $csv
elements and do it in the same loop - even for more values.
Consider the following:
foreach ($csv as $key => $row) {
$purchasePrice = str_replace(',', '.', $row[1]);
$object = new Product($purchasePrice, 10, 21);
$csv[$key] = $object->margePercentage;
$csv[$key] = $object->getValue2(); // or whatever function needed for get your value2
}
If you want you can also use &
as foreach($csv as &$row)
and then just add element to row as $row
.
Hope that helps!
answered Jan 3 at 16:33
dWinderdWinder
6,70131231
6,70131231
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54023708%2fphp-how-to-add-multiple-values-to-an-multideminsional-array%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Possible duplicate of PHP add elements to multidimensional array with array_push
– dns_nx
Jan 3 at 13:57
stackoverflow.com/questions/15024616/…
– Zeljka
Jan 3 at 13:57
Is there a specific reason you're not using objects instead? Multidimensional array is a little outdated
– Joppe De Cuyper
Jan 3 at 13:57
@JoppeDeCuyper Because from a array I can generate a csv file
– Cody
Jan 3 at 14:08
@dns_nx I have already checked that one out, but I don't seem to find it helpful same as regards to Zeljika
– Cody
Jan 3 at 14:09