We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17830ab commit 2c3eee3Copy full SHA for 2c3eee3
src/Qiniu/Zone.php
@@ -63,7 +63,7 @@ public function getUpHosts($ak, $bucket)
63
64
private function unmarshalUpToken($uptoken)
65
{
66
- $token = split(':', $uptoken);
+ $token = explode(':', $uptoken);
67
if (count($token) !== 3) {
68
throw new \Exception("Invalid Uptoken", 1);
69
}
@@ -76,7 +76,7 @@ private function unmarshalUpToken($uptoken)
76
$bucket = $scope;
77
78
if (strpos($scope, ':')) {
79
- $scopes = split(':', $scope);
+ $scopes = explode(':', $scope);
80
$bucket = $scopes[0];
81
82
0 commit comments