$Id: README.usage,v 1.1 2001/08/05 15:27:01 david Exp $ Usage ----- Example usage may be found in the tests and demo directories. Note: For convenience you may use the same class names for struct and object as Satellite uses, to simplify a migration to Universe. A very simple example follows here: lrand48(); echo "Random value retrieved: $value\n"; ?> Using enumerations ------------------ Universe does not handle enum:s like Satellite. The class for enum:s is removed and replaced with the possibility to use strings as enum values, for example: // IDL enum enum_data_type { zero, one, two, three, four, five, six, seven }; interface DataTypes { enum_data_type loop_enum(in enum_data_type value); }; // PHP loop_enum(1)."\n"; echo $object->loop_enum(two)."\n"; echo $object->loop_enum("three")."\n"; ?> // Output one two three Creating CORBA objects in PHP ----------------------------- See server.php and client.php in the demo directory.