COM Funções
PHP Manual

com_get

(PHP 4)

com_getGets the value of a COM Component's property [deprecated]

Descrição

Deprecated, use the OO syntax instead.

Exemplo #1 OO syntax

<?php
// do this
$var $obj->property;
// instead of this:
$var com_get($obj'property');
?>

Notas

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.


COM Funções
PHP Manual