예제 #1
0
파일: bit-oper.php 프로젝트: xzungshao/iphp
 public static function setFromBitArray($value, $array = array())
 {
     $new_value = $value;
     foreach ($array as $elm) {
         $new_value = bitManipulation::set($new_value, $elm);
     }
     return $new_value;
 }