
【主 题】:提交runing字段 【描 述】: [原因]:正则匹配 bind_route 添加runing字段 PS:对应取出bind_route的, 即分割符 [过程]: [影响]: 【结 束】
29 lines
631 B
PHP
29 lines
631 B
PHP
<?php
|
|
|
|
namespace GuzzleHttp;
|
|
|
|
use Psr\Http\Message\MessageInterface;
|
|
|
|
final class BodySummarizer implements BodySummarizerInterface
|
|
{
|
|
/**
|
|
* @var int|null
|
|
*/
|
|
private $truncateAt;
|
|
|
|
public function __construct(int $truncateAt = null)
|
|
{
|
|
$this->truncateAt = $truncateAt;
|
|
}
|
|
|
|
/**
|
|
* Returns a summarized message body.
|
|
*/
|
|
public function summarize(MessageInterface $message): ?string
|
|
{
|
|
return $this->truncateAt === null
|
|
? \GuzzleHttp\Psr7\Message::bodySummary($message)
|
|
: \GuzzleHttp\Psr7\Message::bodySummary($message, $this->truncateAt);
|
|
}
|
|
}
|