pel / zohocreator-api

一个用于消费 Zoho Creator API 的类。

dev-master 2015-09-20 17:23 UTC

This package is not auto-updated.

Last update: 2024-09-28 18:28:11 UTC


README

关于

这是一个用于消费 Zoho Creator API 的 PHP 类。

https://www.zoho.com/creator/

用法

以下是类的公共方法。有关使用方法的更多信息,请访问 Zoho Creator 网站。

// Initializes the class.
$zoho = new Zoho_Creator_API($login_id, $password, $api_key, $application_name);

// Initializes an API ticket.
$zoho->init_api_ticket();

// Kills an API ticket.
$zoho->kill_api_ticket();

// Adds an entry.
$zoho->add($form_name, $data_array);

// Updates an entry.
$zoho->update($form_name, $data_array, $criteria, $reloperator);

// Updates if exists, adds if not.
$zoho->update_else_add($form_name, $data_array), $criteria);