★ wanayoo — archive 1999 http://fr.php.net/manual/class.orbitobject.phpNouvelle recherche | Portail wanayoo

PHP Home Page

Manual Table of Contents
Up to Satellite
Quick Reference
English version of this pageGerman version of this pageJapanese version of this page
Italian version of this pageFrench version of this pageHungarian version of this page
Spanish version of this pageDutch version of this pageBrazilian Portuguese version of this page
Korean version of this pageCzech version of this page
Satellite
* OrbitObject
* OrbitEnum
* OrbitStruct
* satellite_caught_exception
* satellite_exception_id
* satellite_exception_value

  Thanks to:
 Chek.com
 easyDNS
 VA Linux Systems

  Related sites:
Apache
MySQL
PostgreSQL
Zend Tech.

  Community:
LinuxFund.org
OSDN
Manual: OrbitObject
View the source code for this pageSearch the site



Previous page
 Satellite
 Updated
Mon, 08 Jan 2001
OrbitEnum 
Next page


OrbitObject

(unknown)

OrbitObject -- Access CORBA objects

Description

new OrbitObject (string ior)

This class provides access to a CORBA object. The ior parameter should be a string containing the IOR (Interoperable Object Reference) that identifies the remote object.

Example 1. Sample IDL file


interface MyInterface {
    void SetInfo (string info);
    string GetInfo();

    attribute int value;
}
      

Example 2. PHP code for accessing MyInterface


<?php
$obj = new OrbitObject ($ior);

$obj->SetInfo ("A 2GooD object");

echo $obj->GetInfo();

$obj->value = 42;

echo $obj->value;
?>
      


 About Notes


Previous page
 Satellite
 Updated
Mon, 08 Jan 2001
OrbitEnum 
Next page





Who's responsible for this?
Top of this page

Site
Hosting:



Located in
France
Elements of this website are subject to copyright.
Questions about installing or using PHP should be directed to one of the mailing lists.
Only questions about the website should be directed to webmaster@php.net.