Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

293
Views
array_intersect() with dynamic length of arguments

I've got an array of arrays that may have a different count of elements when the script is run.

$strict = [
    [0] => ['one', 'two', 'three', 'four'],
    [1] => ['one', 'two', 'four', 'eight'],
    [2] => ['two', 'four', 'ten', 'twenty'],
 /* [x] => [. . .] */
];

$result = array_intersect($strict[0], $strict[1], $strict[2]);
print_r($result); //shows ['two', 'four'];

I want to do something like this though:

$result = array_intersect($strict);

Where I pass in a dynamic length array of arrays and array_intersect will go through each one and take only the common entries.

Doing array_intersect($strict) does not work, because the function requires at least two arguments.

Maybe something like

array_intersect(function ($array) {
    $list = '';
    foreach ($array as $el) {
        $list .= $el.',';
    }

    $list = rtrim($list, ',');

    return eval($list);
});

though this particular method still throws the error

Warning: array_intersect(): at least 2 parameters are required, 1 given

about 4 years ago · Santiago Trujillo
2 answers
Answer question

0

You can use call_user_func_array:

Call a callback with an array of parameters

So your callback would be array_intersect, and you could pass your array like this:

$result = call_user_func_array('array_intersect', $strict);
about 4 years ago · Santiago Trujillo Report

0

You can take advantage of modern PHP's array packing/unpacking features - aka variadics, or the so-called "splat" (...) operator - as well:

$result = array_intersect(...$strict);
about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!