Development_ CMIS API(PHP) - aegif/NemakiWare GitHub Wiki
English/日本語
To use CMIS API from PHP, Apache Chemistry's PHP client example is useful. Checking out the sample source code from the Subversion repository, you can call CMIS API in the exmaples.
Before running the codes, you should add the following path to PATH by passing it as an argument
C:\phpclient\trunk\atom;C:\phpclient\trunk\atom\cmis
or adding it to the include_path in php.ini:
include_path=".;C:\xampp\php\PEAR;
php -f cmis_ls.php <rest-endpoint> <username> <password> <folderpath> [debug option 1](2.html)
However this cmis_ls.php
sample source code has a bug, you should read cmis_service by require_once.
require_once ('cmis_service.php');