Files
huangjingfen/pro_v3.5.1/crmeb/services/upload/BaseClient.php
panchengyong c1e74d8e68 chore(php): 统一 ScottPan 文件头与注释域名替换
- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明

Made-with: Cursor
2026-03-29 11:22:58 +08:00

106 lines
2.9 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace crmeb\services\upload;
/**
* 基础请求
* Class BaseClient
* @author 等风来
* @email 136327134@qq.com
* @date 2023/5/18
* @package crmeb\services\upload
*/
abstract class BaseClient
{
/**
* 是否解析为xml
* @var bool
*/
protected $isXml = true;
/**
*
* @var []callable
*/
protected $curlFn = [];
/**
* @param callable $curlFn
* @return $this
* @author 等风来
* @email 136327134@qq.com
* @date 2023/5/18
*/
public function middleware(callable $curlFn)
{
$this->curlFn[] = $curlFn;
return $this;
}
/**
* 发起请求
* @param string $url
* @param string $method
* @param array $data
* @param array $clientHeader
* @param int $timeout
* @return array|bool|SimpleXMLElement|mixed
*/
protected function requestClient(string $url, string $method, array $data = [], array $clientHeader = [], int $timeout = 10)
{
$headers = [];
foreach ($clientHeader as $key => $item) {
$headers[] = $key . ':' . $item;
}
$curl = curl_init($url);
//请求方式
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
//post请求
if (!empty($data['body'])) {
curl_setopt($curl, CURLOPT_POSTFIELDS, $data['body']);
} else if (!empty($data['json'])) {
curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($data['json']));
} else {
$curlFn = $this->curlFn;
foreach ($curlFn as $item) {
if ($item instanceof \Closure) {
$curlFn($curl);
}
}
}
//超时时间
curl_setopt($curl, CURLOPT_TIMEOUT, $timeout);
//设置header头
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
//返回抓取数据
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
//输出header头信息
curl_setopt($curl, CURLOPT_HEADER, true);
//TRUE 时追踪句柄的请求字符串,从 PHP 5.1.3 开始可用。这个很关键就是允许你查看请求header
curl_setopt($curl, CURLINFO_HEADER_OUT, true);
//https请求
if (1 == strpos("$" . $url, "https://")) {
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
}
[$content, $status] = [curl_exec($curl), curl_getinfo($curl)];
curl_close($curl);
$content = trim(substr($content, $status['header_size']));
if ($content) {
if ($this->isXml) {
return XML::parse($content);
} else {
return json_decode($content, true);
}
} else {
return true;
}
}
}