Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Combine flags in array to single value using bitwise OR

If I have an array of flags and I want to combine them with a bitwise conjunction

ie:

$foo = array(flag1, flag2);

into

$bar = flag1 | flag2;

Does PHP have any good functions that will do this nicely for me already?

like image 693
veilig Avatar asked Jul 24 '10 15:07

veilig


3 Answers

The array_reduce will reduce an array to a single value for you:

$res = array_reduce($array, function($a, $b) { return $a | $b; }, 0);

Reduce is also sometimes called fold (fold left or fold right) in other languages.

like image 64
Daniel Egeberg Avatar answered Nov 02 '22 22:11

Daniel Egeberg


You could do it like so

$bar = $foo[0] | $foo[1]

If the size of your array is unknown you could use array_reduce like this

// in php > 5.3
$values = array_reduce($flagArray, function($a, $b) { return $a | $b; });
// in php <= 5.2
$values = array_reduce($flagArray, create_function('$a, $b', 'return $a | $b'));
like image 27
Benjamin Cremer Avatar answered Nov 02 '22 23:11

Benjamin Cremer


$values = array_reduce($foo,function($a,$b){return is_null($a) ? $b : $a | $b;});

PHP < 5.3 (no closures), either of these two:

function _mybitor($a,$b){return is_null($a) ? $b : $a | $b;}
$values = array_reduce($foo,'_mybitor');

or

$values = array_reduce($foo,create_function('$a,$b','return is_null($a) ? $b : $a | $b;'));

);

like image 33
Wrikken Avatar answered Nov 02 '22 23:11

Wrikken