php 3

[XAMPP] 윈도우에 설치하기 (on windows)

▶ XAMPP란? - XAMPP의 이름은 X(크로스 플램폼), A(아파치 웹 서버), M(MariaDB), P(PHP), P(Perl) 의 줄임말이다. - XAMPP는 PHP 개발 환경에 가장 인기 있고 오프라인 환경인 로컬PC(=개인이 소유하고 있는 컴퓨터) 환경에서 웹 개발을 할 때 사용하는 소프트웨어이다. ▶ 윈도우에 XAMPP 설치하기 1. https://www.apachefriends.org/index.html 에 접속한다. XAMPP Installers and Downloads for Apache Friends What is XAMPP? XAMPP is the most popular PHP development environment XAMPP is a completely free, easy t..

php 2019.11.26

[php] cURL 함수 및 옵션

▶ cURL 란? - Client URL Library Functions - URL을 사용하여 데이터를 전송하기 위한 명령 줄 도구 및 라이브러리 * cURL로 가능한 일 - HTTPS certificates - HTTP POST - HTTP PUT - FTP upload - HTTP Form - cookie - authentication ▶ cURL 함수 - curl_init : 세션 초기화, 핸들값 리턴함 - curl_setopt : curl 전송을 위한 옵션 설정 - curl_exec : 주어진 curl 세션 실행(수행) - curl_errno : 에러번호 가져오기 - curl_error : 에러메시지 가져오기 - curl_getinfo : 상태 정보를 리턴 - curl_close : curl 세션..

php 2019.11.14