Implode doesn't work in laravel based on variable data
When I want to implode I use $occu = implode(',',$_POST["occupation"]) and it implodes and the result is 1,2,4.
Now when I use $occu in query like below:
$total = DB::table('store')
->WhereIn('occupation_id',[$occu])
->get();
Then it only fetch the id 1 and not the 2 and 4.
But, if I use in this way:
$total = DB::table('store')
->WhereIn('occupation_id',[1,2,4])
->get();
Then it fetches all three ids.
Therefore, I want to know that why variable based implode first id is taken and not the other two.
php laravel
add a comment |
When I want to implode I use $occu = implode(',',$_POST["occupation"]) and it implodes and the result is 1,2,4.
Now when I use $occu in query like below:
$total = DB::table('store')
->WhereIn('occupation_id',[$occu])
->get();
Then it only fetch the id 1 and not the 2 and 4.
But, if I use in this way:
$total = DB::table('store')
->WhereIn('occupation_id',[1,2,4])
->get();
Then it fetches all three ids.
Therefore, I want to know that why variable based implode first id is taken and not the other two.
php laravel
In our second example its array but in you 1st example its string even if u put square brackets around it. For example ["1,2,3"] this is what ur getting with a implode and what are you passing in second example [1,2,3] see the difference.
– Akhilesh
Nov 25 '18 at 7:22
If you are already getting array don't implode it just pass it without implode. It will work.
– Akhilesh
Nov 25 '18 at 7:24
add a comment |
When I want to implode I use $occu = implode(',',$_POST["occupation"]) and it implodes and the result is 1,2,4.
Now when I use $occu in query like below:
$total = DB::table('store')
->WhereIn('occupation_id',[$occu])
->get();
Then it only fetch the id 1 and not the 2 and 4.
But, if I use in this way:
$total = DB::table('store')
->WhereIn('occupation_id',[1,2,4])
->get();
Then it fetches all three ids.
Therefore, I want to know that why variable based implode first id is taken and not the other two.
php laravel
When I want to implode I use $occu = implode(',',$_POST["occupation"]) and it implodes and the result is 1,2,4.
Now when I use $occu in query like below:
$total = DB::table('store')
->WhereIn('occupation_id',[$occu])
->get();
Then it only fetch the id 1 and not the 2 and 4.
But, if I use in this way:
$total = DB::table('store')
->WhereIn('occupation_id',[1,2,4])
->get();
Then it fetches all three ids.
Therefore, I want to know that why variable based implode first id is taken and not the other two.
php laravel
php laravel
asked Nov 25 '18 at 6:06
user3706927user3706927
4410
4410
In our second example its array but in you 1st example its string even if u put square brackets around it. For example ["1,2,3"] this is what ur getting with a implode and what are you passing in second example [1,2,3] see the difference.
– Akhilesh
Nov 25 '18 at 7:22
If you are already getting array don't implode it just pass it without implode. It will work.
– Akhilesh
Nov 25 '18 at 7:24
add a comment |
In our second example its array but in you 1st example its string even if u put square brackets around it. For example ["1,2,3"] this is what ur getting with a implode and what are you passing in second example [1,2,3] see the difference.
– Akhilesh
Nov 25 '18 at 7:22
If you are already getting array don't implode it just pass it without implode. It will work.
– Akhilesh
Nov 25 '18 at 7:24
In our second example its array but in you 1st example its string even if u put square brackets around it. For example ["1,2,3"] this is what ur getting with a implode and what are you passing in second example [1,2,3] see the difference.
– Akhilesh
Nov 25 '18 at 7:22
In our second example its array but in you 1st example its string even if u put square brackets around it. For example ["1,2,3"] this is what ur getting with a implode and what are you passing in second example [1,2,3] see the difference.
– Akhilesh
Nov 25 '18 at 7:22
If you are already getting array don't implode it just pass it without implode. It will work.
– Akhilesh
Nov 25 '18 at 7:24
If you are already getting array don't implode it just pass it without implode. It will work.
– Akhilesh
Nov 25 '18 at 7:24
add a comment |
1 Answer
1
active
oldest
votes
In Laravel, we need to provide array of values for whereIn function. But you are providing string with comma separated.
You should use this instead
$arrVal = $_POST['ids'];
$items = DB::table('store')
->whereIn('field', $arrVal)
->get();
Above is the example code. Please try this.
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%2f53465077%2fimplode-doesnt-work-in-laravel-based-on-variable-data%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
In Laravel, we need to provide array of values for whereIn function. But you are providing string with comma separated.
You should use this instead
$arrVal = $_POST['ids'];
$items = DB::table('store')
->whereIn('field', $arrVal)
->get();
Above is the example code. Please try this.
add a comment |
In Laravel, we need to provide array of values for whereIn function. But you are providing string with comma separated.
You should use this instead
$arrVal = $_POST['ids'];
$items = DB::table('store')
->whereIn('field', $arrVal)
->get();
Above is the example code. Please try this.
add a comment |
In Laravel, we need to provide array of values for whereIn function. But you are providing string with comma separated.
You should use this instead
$arrVal = $_POST['ids'];
$items = DB::table('store')
->whereIn('field', $arrVal)
->get();
Above is the example code. Please try this.
In Laravel, we need to provide array of values for whereIn function. But you are providing string with comma separated.
You should use this instead
$arrVal = $_POST['ids'];
$items = DB::table('store')
->whereIn('field', $arrVal)
->get();
Above is the example code. Please try this.
answered Nov 25 '18 at 6:21
Lucky SainiLucky Saini
2,6511536
2,6511536
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%2f53465077%2fimplode-doesnt-work-in-laravel-based-on-variable-data%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
In our second example its array but in you 1st example its string even if u put square brackets around it. For example ["1,2,3"] this is what ur getting with a implode and what are you passing in second example [1,2,3] see the difference.
– Akhilesh
Nov 25 '18 at 7:22
If you are already getting array don't implode it just pass it without implode. It will work.
– Akhilesh
Nov 25 '18 at 7:24