Judy
PHP Manual

La clase Judy

(PECL judy >= 0.1.1)

Introducción

La clase Judy implementa la interface ArrayAccess y la interface Iterator. Esta clase, una vez instanciada, canpuede ser accesada como un array PHP.

Un objeto Judy PHP (o Array Judy) puede ser uno de los siguientes tipos :

Ejemplo #1 Ejemplo de arreglo Judy

<?php
    $judy 
= new Judy(Judy::INT_TO_MIXED);
    
$judy[1] = "one";
    
$judy[2] = array('a''b''c');
    
$judy[3] = new Judy(Judy::BITSET);
?>

Sinopsis de la Clase

Judy implements ArrayAccess , Iterator {
/* Constantes */
const integer BITSET = 1 ;
const integer INT_TO_INT = 2 ;
const integer INT_TO_MIXED = 3 ;
const integer STRING_TO_INT = 4 ;
const integer STRING_TO_MIXED = 5 ;
/* Métodos */
public int byCount ( int $nth_index )
public __construct ( int $judy_type )
public int count ([ int $index_start = 0 [, int $index_end = -1 ]] )
public void __destruct ( void )
public mixed first ([ mixed $index ] )
public int firstEmpty ([ mixed $index = 0 ] )
public int free ( void )
public int getType ( void )
public void last ([ string $index ] )
public int lastEmpty ([ int $index = -1 ] )
public int memoryUsage ( void )
public mixed next ( mixed $index )
public int nextEmpty ( int $index )
public bool offsetExists ( mixed $offset )
public mixed offsetGet ( mixed $offset )
public bool offsetSet ( mixed $offset , mixed $value )
public bool offsetUnset ( mixed $offset )
public mixed prev ( mixed $index )
public int prevEmpty ( mixed $index )
public void size ( void )
}

Constantes predefinidas

Judy::BITSET

Define el arreglo Judy como un set de bits con Claves como Enteros y Valores como Booleanos

Judy::INT_TO_INT

Define el arreglo Judy con clave/valor como Enteros, y sólo Enteros.

Judy::INT_TO_MIXED

Define el arreglo Judy con claves como Enteros y Valores como de cualquier tipo.

Judy::STRING_TO_INT

Define un arreglo Judy con claves como Cadenas y Valores como Enteros, y sólo Enteros.

Judy::STRING_TO_MIXED

Define el arreglo Judy con claves como Cadenas y Valores como de cualquier tipo.

Tabla de contenidos


Judy
PHP Manual