时间:2021-07-01 10:21:17 帮助过:58人阅读
require_once('php-sdk-master/qiniu/rs.php');
$bucket = "**";
$accessKey = '**';
$secretKey = '**';
Qiniu_SetKeys($accessKey, $secretKey);
function fileList()
{
global $bucket;
require_once('php-sdk-master/qiniu/rsf.php');
$client = new Qiniu_MacHttpClient(null);
list($items, $marker, $err) = Qiniu_RSF_ListPrefix($client, $bucket);
if ($err !== null)
{
var_dump($err);
}
else
{
var_dump($items);
}
}
fileList();
返回一个错误
string 'EOF' (length=3)
请问是什么地方出错了
PS:ASB帐号都对的,这个能确保无误
代码如下
require_once('php-sdk-master/qiniu/rs.php');
$bucket = "**";
$accessKey = '**';
$secretKey = '**';
Qiniu_SetKeys($accessKey, $secretKey);
function fileList()
{
global $bucket;
require_once('php-sdk-master/qiniu/rsf.php');
$client = new Qiniu_MacHttpClient(null);
list($items, $marker, $err) = Qiniu_RSF_ListPrefix($client, $bucket);
if ($err !== null)
{
var_dump($err);
}
else
{
var_dump($items);
}
}
fileList();
返回一个错误
string 'EOF' (length=3)
请问是什么地方出错了
PS:ASB帐号都对的,这个能确保无误
这个应该不是错误,只是打印出来的信息,表示list已经结束了,具体可以查看 https://github.com/qiniu/php-sdk/blob/master/qiniu/rsf.php 文件最上面的注释。