Implode doesn't work in laravel based on variable data












0















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.










share|improve this question























  • 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


















0















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.










share|improve this question























  • 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
















0












0








0








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.










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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





















  • 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














1 Answer
1






active

oldest

votes


















1














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.






share|improve this answer























    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    1














    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.






    share|improve this answer




























      1














      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.






      share|improve this answer


























        1












        1








        1







        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.






        share|improve this answer













        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.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 25 '18 at 6:21









        Lucky SainiLucky Saini

        2,6511536




        2,6511536
































            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Ottavio Pratesi

            Tricia Helfer

            15 giugno