(PHP 4)
com_get — Gets the value of a COM Component's property [deprecated]
Deprecated, use the OO syntax instead.
Örnek 1 OO syntax
<?php
// do this
$var = $obj->property;
// instead of this:
$var = com_get($obj, 'property');
?>
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.