-
PHP 实现的 SugarCRM REST 客户端:sugarcrm-rest-client
资源介绍
糖CRM
SugarCRM 的 REST 客户端,基于 PHP。
PHP 版本 >= 5.3 是必需的。
建立连接
Session :: connect ( 'http://link/to/your/sugarcrm/service/v4_1/rest.php' , 'login' , 'password' );
Where子句
要搜索记录,请使用带有array或string参数的where方法。
Contact :: where ( array ( 'last_name' => 'Tibbs' ))-> fetch ();
返回名称为Tibbs 的Contact对象。
Account :: where ( array ( 'name' => "LIKE 'Q%'" ))-> fetchAll ();
返回Account对象的集合,用于搜索LIKE子句。 也可以在查询中使