com_get
(PHP 4)
com_get — Gets 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_get
There are no user contributed notes for this page.
