프로젝트 디렉토리에서 실행
composer.phar이 없으면 가지고 온다.curl -sS https://getcomposer.org/installer | php
guzzle 설치./composer.phar require guzzlehttp/guzzle
index.php 에 추가$container['guzzleHttp'] = function ($container) { $client = new \GuzzleHttp\Client(); return $client; };
사용은 이런식으로..echo $container['guzzleHttp']->get('http://www.naver.com')->getBody();
주의 : AWS SDK를 사용한다면 이미 AWS SDK에서도 guzzle을 로드하기때문에 충돌난다.
이럴때는 그냥 AWS SDK에 포함되어있는 guzzle을 사용하면된다.
참조 : http://docs.guzzlephp.org/en/latest/quickstart.html
- Posted
- Filed under 프로그래밍/PHP