如何在整数中存储数组的索引?

时间:2016-10-21 16:52:05

标签: php arrays

我有一个数组如下:

$categories = [ 
    0 => 'a',
    1 => 'b',
    2 => 'c',
    3 => 'd',
    4 => 'e',
    5 => 'f',
];

有没有办法使用可以存储$ categories的多个索引的整数变量?

例如:

$x = a (an integer number). It means $x contains 0, 1
$x = b (an integer number). It means $x contains 1, 2
etc,

有人能告诉我怎么做吗?

2 个答案:

答案 0 :(得分:1)

试试Bitwise operators。 按位运算符允许评估和处理整数内的特定位。

答案 1 :(得分:0)

如何存储对象的实例,其中对象包含两个索引属性和一个值属性