본문 바로가기

개발/php5

FCM v1 버전 curl -sS https://getcomposer.org/installer | php composer update vi composer.json - mikey179/vfsStream를  mikey179/vfsstream 으로 수정 php composer.phar require google/auth php composer.phar require google/apiclient:^2.12.1 or composer require google/auth composer require google/apiclient:~2.12.1  useApplicationDefaultCredentials(); $client->setScopes($scope); $auth_key = $c.. 2024. 7. 22.
php Sendbird 채널 그룹 나가기 curl put 이용 $userIds));// Initialize cURL$curl = curl_init($url);// Set cURL optionscurl_setopt($curl, CURLOPT_HTTPHEADER, array( "Api-Token: $apiToken", "Content-Type: application/json"));curl_setopt($curl, CURLOPT_CUSTOMREQUEST, "PUT");curl_setopt($curl, CURLOPT_POSTFIELDS, $data);curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);// Execute the cURL session$response = curl_exec($curl);// Check for cU.. 2024. 5. 28.
코드이그나이터 mogoDB 라이브러리 https://github.com/nekoromancer/Mongoq-library 2023. 4. 26.
PHP - CURL ■ CURL (Client URL Library Functions) - 커맨드 라인에서 URL 문법을 사용하여 파일을 전송하는 내가 원하는 주소의 페이지에 임의의 값을 전달하고 리턴 값을 받아오는 역할 curl 모듈을 사용하기 위해서는 curl 모듈을 서버에 설치하여야 한다. ■ CURL 함수 정리 - curl_init : 세션 초기화, 핸들값 리턴 - curl_setopt : 옵션 세팅 (옵션값에 대해서는 하단에 추가 설명) - curl_exec : curl 실행 - curl_errno : 에러 발생 시 에러번호를 가져온다. - curl_error : 에러 발생 시 에러메시지를 가져온다. - curl_getinfo : 상태 정보를 리턴한다. - curl_close : curl 세션을 닫는다. ■ CUR.. 2023. 3. 28.