thybag / PHP-SharePoint-Lists-API

A simple PHP API to make working with SharePoint lists easy.
MIT License
184 stars 95 forks source link

Fatal error: Uncaught Error: Class 'SharePointAPI' not found in file path Thybag API #153

Closed bharghus closed 3 years ago

bharghus commented 5 years ago

I'm getting the error

my code look like this

require_once('./lib/src/Thybag/SharePointAPI.php');

// 1: connect to SharePoint $sp = new SharePointAPI('xyz.xyz.com', 'password', './Lists.wsdl','SPONLINE');

// 2: read a list $listContents = $sp->read('');

// 3: now you have a 2-D array to work with in PHP foreach($listContents as $item) { var_dump($item); }

nehagrover027 commented 1 month ago

Hi Bhargus,

Can you please let me know how did you fix this.? I'm facing the same issue.

Thanks