1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
|
/**
* PHP_VER : PHP 5.3+
* LIBRARIES :
* KEYWORDS : BASIC RAW ARRAY KEY VALUE DISABLE WITHOUT AUTO CASTING INTEGER FLOAT
* TABLEAU BRUT CLE CLEF VALEUR SANS TRANSTYPAGE ENTIER DECIMAL
*
* Class with array access methods that manage a special array without auto-casting the keys
* A key equals to '1' (string) will be different from another that is equal to 1 (integer)
* It is even possible to have now a float number as one key of the array.
* Ex:
* $a = new SimpleArray();
* $a['123.456'] = 'string'; // the key is a string
* $a[123.456] = 'float'; // the key is a float
* $a[] = 'value'; // standard definition
*
* IMPORTANT:
* Because of some PHP limitations (or features...), it is impossible to walk through the array
* using foreach () or each().
* The right way to walk through is:
* $a->rewind();
* while ($a->valid()) {
* // do some stuff using $a->key() and $a->current()
* $a->next();
* }
*
*
* Classe gérant un tableau spécial qui ne transtype pas ses clefs. Une clé '1' sera différente de 1
* Il est même possible de définir maintenant des nombres décimaux en guise de clef.
* Ex :
* $a = new SimpleArray();
* $a['123.456'] = 'string'; // la clef est une chaine
* $a[123.456] = 'float'; // la clef est un décimal
* $a[] = 'value'; // définition standard
*
* IMPORTANT:
* A cause de certaines limitations de PHP (ou fonctionnalités...), il est impossible de parcourir le tableau
* en utilisant foreach () ou each().
* Voici la bonne manière pour le parcourir :
* $a->rewind();
* while ($a->valid()) {
* // opérations utilisant $a->key() et $a->current()
* $a->next();
* }
*
* @version 1.0.0
*/
class SimpleArray
implements \ArrayAccess, \Iterator, \Countable
{
/**
* @var array array([] => values)
*/
private $values = array();
/**
* @var array array([] => keys)
*/
private $keys = array();
/**
* @var integer
*/
private $index = -1;
/**
* ARRAYACCESS INTERFACE
*/
public function offsetExists($offset)
{
return (array_search($offset, $this->keys, true) !== false);
}
public function offsetGet($offset)
{
$index = array_search($offset, $this->keys, true);
if ($index !== false) {
return $this->values[$index];
}
}
public function offsetSet($offset, $value)
{
if ($offset === null) {
$index = ++$this->index;
$offset = $index;
}
else {
$index = array_search($offset, $this->keys, true);
if ($index === false) {
$index = ++$this->index;
}
}
$this->values[$index] = $value;
$this->keys[$index] = $offset;
}
public function offsetUnset($offset)
{
$index = array_search($offset, $this->keys, true);
if ($index !== false) {
unset ($this->values[$index]);
unset ($this->keys[$index]);
}
}
/**
* ITERATOR INTERFACE
*/
public function current()
{
return $this->values[key($this->keys)];
}
public function key()
{
return current($this->keys);
}
public function next()
{
next($this->keys);
return $this->current();
}
public function rewind()
{
reset($this->keys);
}
public function valid()
{
return ($this->key() !== false);
}
/**
* COUNTABLE INTERFACE
*/
public function count()
{
return count($this->keys);
}
###########################################
/**
* Check if a value is in the array
* Vérifie si une valeur est dans la tableau
*
* @param mixed $needle
* @param bool $strict
* @return bool
*/
public function inArray($needle, $strict = true)
{
return (array_search($needle, $this->values, $strict) !== false);
}
/**
* Check if a key exist
* Vérifie si une clé existe
*
* @param mixed $key (Strict comparison)
* @return bool
*/
public function keyExists($key)
{
return (array_search($key, $this->keys, true) !== false);
}
/**
* Search a value and returns the key, if not found returns false
* Cherche une valeur et renvoie la clé correspondante, sinon renvoie false
*
* @param mixed $needle
* @param bool $strict
* @return mixed|false
*/
public function search($needle, $strict = true)
{
$index = array_search($needle, $this->values, $strict);
if ($index !== false)
{
return $this->keys[$index];
}
}
/**
* Returns the key at a specific index
* First index starts at zero
* If the asked index is greater than the count of elements,
* the function will loop through the elements as many times as necessary
* until the index is reached
*
* Renvoie la clé d'un index spécifique
* Première index débute à zéro
* Si l'index demandé est supérieure au nombre d'élements
* la fonction bouclera sur le tableau autant de fois que nécéssaire
* jusqu'à ce que l'index soit atteint
*
* @param int $pos positive
* @return mixed
*/
public function getKeyByIndex($pos)
{
return $this->keys[$this->getIndex($pos)];
}
/**
* Returns the value at a specific index
* First index starts at zero
* If the asked index is greater than the count of elements,
* the function will loop through the elements as many times as necessary
* until the index is reached
*
* Renvoie la valeur d'un index spécifique
* Première index débute à zéro
* Si l'index demandé est supérieure au nombre d'élements
* la fonction bouclera sur le tableau autant de fois que nécéssaire
* jusqu'à ce que l'index soit atteint
*
* @param int $pos positive
* @return mixed
*/
public function getValueByIndex($pos)
{
return $this->values[$this->getIndex($pos)];
}
/**
* Returns the key and value at a specific index
* First index starts at zero
* If the asked index is greater than the count of elements,
* the function will loop through the elements as many times as necessary
* until the index is reached
*
* Renvoie la clé et la valeur d'un index spécifique
* Première index débute à zéro
* Si l'index demandé est supérieure au nombre d'élements
* la fonction bouclera sur le tableau autant de fois que nécéssaire
* jusqu'à ce que l'index soit atteint
*
* @param int $pos positive
* @return array array(key => mixed, value => mixed)
*/
public function getKeyValueByIndex($pos)
{
$index = $this->getIndex($pos);
return array('key' => $this->keys[$index], 'value' => $this->values[$index]);
}
/**
* Returns the key or value at a specific index
* First index starts at zero
* If the asked index is greater than the count of elements,
* the function will loop through the elements as many times as necessary
* until the index is reached
*
* Renvoie la clé d'un index spécifique
* Première index débute à zéro
* Si l'index demandé est supérieur au nombre d'élements
* la fonction bouclera sur le tableau autant de fois que nécéssaire
* jusqu'à ce que l'index soit atteint
*
* @param int $pos positive
* @return mixed
*/
private function getIndex($pos)
{
$pos = (int)$pos;
$nb = count($this->keys);
$i = ($pos > $nb) ? (($pos % $nb) - 1) : $pos;
// CAREFUL : array_keys autocasts to integer the integers values input as string
$j = -1;
foreach ($this->keys as $index => $key)
{
if (++$j === $i) {
return $index;
}
}
}
} |
Partager