masiuchi/mt-data-api-client-php

PHP 的 Movable Type 数据 API 客户端

0.0.1 2017-04-02 11:36 UTC

This package is auto-updated.

Last update: 2024-09-21 19:27:03 UTC


README

PHP 的 Movable Type 数据 API 客户端。

用法

use \MT\DataAPI\Client;

$opts = array(
  "base_url" => "https:///mt/mt-data-api.cgi",
  "client_id" => "test"
);
$client = new Client($opts);

$res = $client->call('list_sites');