【发布时间】:2021-08-15 18:52:24
【问题描述】:
我正在尝试通过 codeigniter3 访问microsoft azure blob storage。我从
codeigniter-azure 并遵循该过程。我将库文件夹中的文件复制到我的 application/libraries 文件夹中,并在 application/config/config.php 文件中添加了 azure account_name,account_key。
我在控制器中编写了代码。
$this->load->library('azure');
$blob_storage = $this->azure->get_blob_storage();
var_dump($blob_storage -> listBlobs("xxx-container-name-xxx"));
当我执行代码时,我收到错误Call to a member function get_blob_storage() on null。
【问题讨论】:
-
嗨,Nirdesh,您的问题似乎已经解决了,您能否接受我的回答来结束这个问题?
标签: php codeigniter-3 azure-blob-storage