(PHP 4)
com_load — Creates a new reference to a COM component [deprecated]
Deprecated, use the OO syntax instead.
Örnek 1 OO syntax
<?php
// do this
$obj = new COM($module);
// instead of this:
$obj = com_load($module);
?>
Bilginize: Bu işlev PHP 5'te yoktur. Yöntemleri çağırmak ve özelliklere erişmek için bu işlevin yerine normal ve daha doğal olan nesne yönelimli söz dizimini kullanmalısınız.