(PHP 4)
com_get — Gets the value of a COM Component's property [deprecated]
Deprecated, use the OO syntax instead.
Przykład #1 OO syntax
<?php
// do this
$var = $obj->property;
// instead of this:
$var = com_get($obj, 'property');
?>
Informacja: Ta funkcja nie istnieje w PHP 5; zamiast niej użyj składni obiektowej aby uzyskać dostęp do właściwości, lub aby wywołać metody.