DB 없이 chatbot 간단하게 만들기chatbot.php 이름으로 파일 만들기// 브라우저나 클라이언트에게 "지금부터 JSON을 UTF-8로 보낼 거야"라고 알려주는 헤더 설정header('Content-Type: application/json; charset=utf-8');// 1) JSON 입력 받기// php://input 은 HTTP 요청의 raw body를 그대로 읽어오는 스트림// file_get_contents('php://input') 로 body를 읽고, json_decode 로 PHP 배열로 변환$input = json_decode(file_get_contents('php://input'), true);// 입력이 없거나(message 필드가 없으면) => 에러 응답if (!$i..