Hi Friends,
I am a web developer and working on php using Codeigniter 4 (framework),I need to Integrate Microsoft WindowsAzure Storage Blob in Codeigniter4
I download and added the Microsoft (Microsoft windows Azure storage) folder into Codeigniter/ThirdParty.
Now, i call the library file Showing Below error.
Class 'App\Libraries\Microsoft_WindowsAzure_Storage_Blob' not found
library file code:
namespace App\Libraries;
require_once APPPATH.'/ThirdParty/Microsoft/WindowsAzure/Storage/Blob.php';
use Microsoft\WindowsAzure\Storage\blob;
new Microsoft_WindowsAzure_Storage_Blob('blob.core.windows.net', $account, $key);
Is there any idea?
Thanks