OrbitObject

(unknown)

OrbitObject -- Access CORBA objects

Description

new OrbitObject (string ior)

Uyarý

Bu modül DENEYSELDÝR. Bunun anlamý, burada listenen fonksiyonlar, fonksiyon isimleri, kýsaca burada yazýlan HER ÞEY PHP"nin ilerki sürümlerinde UYARI YAPILMAKSIZIN DEðÝÞTÝRÝLEBÝLÝR. Dikkatli olun, ve bu modülü aldýÐýnýz riski bilerek kullanýn.

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.

Örnek 1. Sample IDL file


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

    attribute int value;
}
      

Örnek 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;
?>