我正在创建一个PHP Web应用程序/站点。我需要在共享点列表上存储一些数据,并检索它们以显示在Web应用程序/站点上。 有什么办法
答案 0 :(得分:0)
您可以检查此API:
用法:
use Thybag\SharePointAPI;
$sp = new SharePointAPI('<username>', '<password>', '<path_to_WSDL>');
从列表中阅读
$sp->read('<list_name>');
查询列表:
$sp->query('list of pets')->where('type','=','dog')->and_where('age','<','5')->sort('age','ASC')->get();
添加到列表:
$sp->write('<list_name>', array('forename'=>'Bob','surname' =>'Smith', 'age'=>40, 'phone'=>'(00000) 000000' ));
还有许多其他选项,您可以在上面的链接中查看。