Symfony HttpClient Stream 和 chunk->getContent() Body 超出大小限制
Symfony HttpClient Stream and chunk->getContent() Body size limit exceeded
在我的 Symfony 项目中,我创建了一个控制器和一个函数来从站点检索 APi.json 的内容。
我正在使用 HttpClient 抓取内容并将其嵌入到项目中的新文件中。
但是当我调用这个函数时,我在写入新文件时出错:
Http2StreamException> Http2StreamException> TransportException
Body 超出大小限制
这个错误来自这段代码:
foreach ($httpClient->stream($response) as $chunk) {
fwrite($fileHandler, $chunk->getContent());
}
我创建了一个php.ini:
memory_limit = '4G'
upload_max_filesize = '700M'
max_input_time = 300000
post_max_size = '700M'
原始文件只有 242MB,新文件内容太大,内容不适合。
我如何绕过此异常并允许对新文件执行 fwrite 操作?
提前致谢
public function infoBDD(): Response
{
//Update le fichier sur le site
$httpClient = HttpClient::create();
$response = $httpClient->request('GET', 'https://mtgjson.com/api/v5/AllPrintings.json');
// Création du fichier
$fileHandler = fopen('../public/BDD/Api.json', 'w');
// Incorporation dans le fichier créé le contenu du fichier uploadé
foreach ($httpClient->stream($response) as $chunk) {
fwrite($fileHandler, $chunk->getContent());
}
//fermeture du fichier créé
fclose($fileHandler);
var_dump('ouverture nouveau fichier');
//Ouverture du fichier voulu
$content = file_get_contents('../public/BDD/Api.json');
$data = json_decode($content, true);
//Vérification si la clé 'data' n'existe pas
if(!array_key_exists('data', $data)) {
throw new ServiceUnavailableHttpException("La clé 'data' n'existe pas dans le tableau de données récupéré,
la réponse type fournie par l'API a peut-être été modifiée");
}
//Vérification si la clé 'data' existe
if(array_key_exists('data', $data)) {
$api = $data['data'];
$this->getTableauData($api);
}
unlink('../public/BDD/Api.json');
return $this->render('users/index.html.twig', [
'controller_name' => 'UsersController',
'page' => 'Profile'
]);
}
所以您面临的限制来自请求 class 的 $bodySizeLimit 属性,它有一个来自 const 的默认值。
但是你可以“解锁”它,因为 this example 在 repo 本身试图解释
基本上,您可以像这样调整您的代码:
public function infoBDD(): Response
{
// Instantiate the HTTP client
$httpClient = HttpClientBuilder::buildDefault();
$request = new Request('https://mtgjson.com/api/v5/AllPrintings.json');
$request->setBodySizeLimit(242 * 1024 * 1024); // 128 MB
$request->setTransferTimeout(120 * 1000); // 120 seconds
$response = $httpClient->request('GET', 'https://mtgjson.com/api/v5/AllPrintings.json');
//....
}
在我的 Symfony 项目中,我创建了一个控制器和一个函数来从站点检索 APi.json 的内容。
我正在使用 HttpClient 抓取内容并将其嵌入到项目中的新文件中。
但是当我调用这个函数时,我在写入新文件时出错:
Http2StreamException> Http2StreamException> TransportException
Body 超出大小限制
这个错误来自这段代码:
foreach ($httpClient->stream($response) as $chunk) {
fwrite($fileHandler, $chunk->getContent());
}
我创建了一个php.ini:
memory_limit = '4G'
upload_max_filesize = '700M'
max_input_time = 300000
post_max_size = '700M'
原始文件只有 242MB,新文件内容太大,内容不适合。
我如何绕过此异常并允许对新文件执行 fwrite 操作?
提前致谢
public function infoBDD(): Response
{
//Update le fichier sur le site
$httpClient = HttpClient::create();
$response = $httpClient->request('GET', 'https://mtgjson.com/api/v5/AllPrintings.json');
// Création du fichier
$fileHandler = fopen('../public/BDD/Api.json', 'w');
// Incorporation dans le fichier créé le contenu du fichier uploadé
foreach ($httpClient->stream($response) as $chunk) {
fwrite($fileHandler, $chunk->getContent());
}
//fermeture du fichier créé
fclose($fileHandler);
var_dump('ouverture nouveau fichier');
//Ouverture du fichier voulu
$content = file_get_contents('../public/BDD/Api.json');
$data = json_decode($content, true);
//Vérification si la clé 'data' n'existe pas
if(!array_key_exists('data', $data)) {
throw new ServiceUnavailableHttpException("La clé 'data' n'existe pas dans le tableau de données récupéré,
la réponse type fournie par l'API a peut-être été modifiée");
}
//Vérification si la clé 'data' existe
if(array_key_exists('data', $data)) {
$api = $data['data'];
$this->getTableauData($api);
}
unlink('../public/BDD/Api.json');
return $this->render('users/index.html.twig', [
'controller_name' => 'UsersController',
'page' => 'Profile'
]);
}
所以您面临的限制来自请求 class 的 $bodySizeLimit 属性,它有一个来自 const 的默认值。
但是你可以“解锁”它,因为 this example 在 repo 本身试图解释
基本上,您可以像这样调整您的代码:
public function infoBDD(): Response
{
// Instantiate the HTTP client
$httpClient = HttpClientBuilder::buildDefault();
$request = new Request('https://mtgjson.com/api/v5/AllPrintings.json');
$request->setBodySizeLimit(242 * 1024 * 1024); // 128 MB
$request->setTransferTimeout(120 * 1000); // 120 seconds
$response = $httpClient->request('GET', 'https://mtgjson.com/api/v5/AllPrintings.json');
//....
}