(PHP 4)
com_get — 获取 COM 组件的属性值 [被废弃]
Deprecated, use the OO syntax instead.
Example #1 OO syntax
<?php
// do this
$var = $obj->property;
// instead of this:
$var = com_get($obj, 'property');
?>
Note: 此函数在 PHP 5 中不再存在. 你应该使用更自然的面向对象语法操作属性及方法。