Forum und email

OrbitObject

(No version information available, might be only in CVS)

OrbitObject — Access CORBA objects

Description

new OrbitObject ( string $ior )
Warning

這個函數是實驗性質的。這個函數的行為、名稱、和關於此函數的任何其他文件在未來PHP的發行中可能會在不通知的情況下改變。 使用此延伸需自行承擔風險。

This class provides access to a CORBA object.

Parameters

ior

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