本文整理汇总了PHP中elFinder::curlExec方法的典型用法代码示例。如果您正苦于以下问题:PHP elFinder::curlExec方法的具体用法?PHP elFinder::curlExec怎么用?PHP elFinder::curlExec使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类elFinder
的用法示例。
在下文中一共展示了elFinder::curlExec方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _bd_curlExec
/**
* Call curl_exec().
*
* @param resource $curl
* @param bool|string $decodeOrParent
* @param array $headers
*
* @throws \Exception
*
* @return mixed
*/
protected function _bd_curlExec($curl, $decodeOrParent = true, $headers = array())
{
$headers = array_merge(array('Authorization: Bearer ' . $this->token->data->access_token), $headers);
$result = elFinder::curlExec($curl, array(), $headers);
if (!$decodeOrParent) {
return $result;
}
$decoded = json_decode($result);
if (!empty($decoded->error_code)) {
$errmsg = $decoded->error_code;
if (!empty($decoded->message)) {
$errmsg .= ': ' . $decoded->message;
}
throw new \Exception($errmsg);
}
// make catch
if ($decodeOrParent && $decodeOrParent !== true) {
$raws = null;
list(, $parentId) = $this->_bd_splitPath($decodeOrParent);
if (isset($decoded->entries)) {
$raws = $decoded->entries;
} elseif (isset($decoded->id)) {
$raws = array($decoded);
}
if ($raws) {
foreach ($raws as $raw) {
if (isset($raw->id)) {
$stat = $this->_bd_parseRaw($raw);
$itemPath = $this->_joinPath($decodeOrParent, $raw->id);
$this->updateCache($itemPath, $stat);
}
}
}
}
return $decoded;
}