how to connect sharepoint with php

前端 未结 3 2079
名媛妹妹
名媛妹妹 2020-12-31 19:47

Do anyone know how to integrate Sharepoint and Php. I am trying to develop php app which can connect to Sharepoint.In particular since basically I am website developer, I wa

3条回答
  •  青春惊慌失措
    2020-12-31 20:33

    If I read your question right, you want to interact with your SharePoint site using PHP. You can do most interaction by using SharePoint's web services. For instance, you can read all list items using the lists web service (http:///_vti_bin/lists.asmx). You can upload files to a SharePoint document library. I searched furiously for an example of what I did to accomplish that, but I have lost it. I remember using Curl to do the uploads.

    There are a number of websites that discuss using PHP to access SharePoint data. Here are a couple that I found with a simple google search:

    • http://craiget.com/hello-sharepoint-meet-php/
    • http://davidsit.wordpress.com/2010/02/23/reading-a-sharepoint-list-with-php/
    • http://social.msdn.microsoft.com/Forums/sharepoint/en-US/3aa34d3d-0f0b-48bd-9752-f9c0c4577804/php-and-sharepoint-calendar-list
    • http://brian-strickland.com/index.php/2012/04/19/displaying-and-downloading-sharepoint-document-libraries-using-php/

    As well as a discussion about a tool called Camelot PHP here

提交回复
热议问题