laravel 프레임 워 크 에서 GuzzleHttp 를 사용 하여 여러 개의 인 터 페 이 스 를 요청 합 니 다.
use GuzzleHttp\Client;
use GuzzleHttp\Promise;
class MyService extends BasicService
{
public function getCityListOther()
{
$url = Common::loadConfig('finance', 'getCityUrl', true);
$client = new Client(['connect_timeout' => 3, 'timeout' => 5,]);
$promises = [
'buying' => $client->getAsync($url.'?businessType=1'),
'license' => $client->getAsync($url.'?businessType=2'),
'deliver' => $client->getAsync($url.'?businessType=3'),
];
$results = Promise\unwrap($promises);
$myInfo1 = (string)$results['buying']->getBody();
$myInfo2 = (string)$results['license']->getBody();
$myInfo3 = (string)$results['deliver']->getBody();
$buyingArr = json_decode($myInfo1, true);
$licenseArr = json_decode($myInfo2, true);
$deliverArr = json_decode($myInfo3, true);
var_dump($buyingArr,$licenseArr,$deliverArr);
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Laravel - 변환된 유효성 검사 규칙으로 API 요청 제공동적 콘텐츠를 위해 API를 통해 Laravel CMS에 연결하는 모바일 앱(또는 웹사이트) 구축을 고려하십시오. 이제 앱은 CMS에서 번역된 콘텐츠를 받을 것으로 예상되는 다국어 앱이 될 수 있습니다. 일반적으로 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.