downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

variant_abs> <com_release
[edit] Last updated: Tue, 21 May 2013

view this page in

com_set

(PHP 4)

com_set Assegna un valore a una proprietà di un oggetto COM

Descrizione

void com_set ( resource $oggetto_com , string $nome_prop , mixed $valore )

Imposta il valore della proprietà nome_prop del componente COM referenziato da oggetto_com. Restituisce il valore appena impostato in caso di successo,, FALSE altrimenti.



add a note add a note User Contributed Notes com_set - [1 notes]
up
0
dan at kuykendall dot org
10 years ago
This should also work using the newer OOP style that is still undocumented.

<?php
$obj
= new COM('Some.app');
$obj->somevar = 'somevalue';
?>

 
show source | credits | sitemap | contact | advertising | mirror sites