(PHP 4)
com_get — Gets the value of a COM Component's property [deprecated]
Deprecated, use the OO syntax instead.
Exemplo #1 OO syntax
<?php
// do this
$var = $obj->property;
// instead of this:
$var = com_get($obj, 'property');
?>
Nota: Esta função não existe no PHP 5;, neste caso você deve usar a regular e mais natural sintaxe OO para acessar propriedades ou chamar métodos.