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

search for in the

variant_abs> <com_release
[edit] Last updated: Fri, 23 Dec 2011

view this page in

com_set

(PHP 4)

com_setBileşenin özelliğine bir değer atar

Açıklama

Kullanımı bırakılmıştır, bunun yerine nesne yönelimli (NY) söz dizimini kullanın.

Örnek 1 NY sözdizimi

<?php
// şeklinde yazın
$obj->property $value;
// bunun yerine:
com_set($obj'property'$value);
?>

Notlar

Bilginize: Bu işlev PHP 5'te yoktur. Yöntemleri çağırmak ve özelliklere erişmek için bu işlevin yerine normal ve daha doğal olan nesne yönelimli söz dizimini kullanmalısınız.



add a note add a note User Contributed Notes com_set
dan at kuykendall dot org 15-Aug-2002 07:38
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 | stats | sitemap | contact | advertising | mirror sites