OrbitEnum

(no version information, might be only in CVS)

OrbitEnum -- Use CORBA enums

Descrição

new OrbitEnum ( string id )

Atenção

Esta função é EXPERIMENTAL. Isso quer dizer que o comportamento desta função e seu nome, incluindo TUDO o que está documentado aqui pode mudar em futuras versões do PHP, SEM QUALQUER NOTIFICAÇÃO. Esteja avisado, e use esta função por sua própria conta e risco.

This class represents the enumeration identified with the id parameter.

Parâmetros

id

Can be either the name of the enumeration (e.g "MyEnum"), or the full repository id (e.g. "IDL:MyEnum:1.0").

Exemplos

Exemplo 1. Sample IDL file

enum MyEnum {
    a,b,c,d,e
};

Exemplo 2. PHP code for accessing MyEnum

<?php
$enum
= new OrbitEnum ("MyEnum");

echo
$enum->a;    /* write 0 */
echo $enum->c;    /* write 2 */
echo $enum->e;    /* write 4 */
?>