$url = " $uuid, "amount" => $amount, "currency" => $currency, "from" => $from, "way" => $way, "to" => $to); $json_data = json_encode($post_date); $flg = curlSend($url, $json_data); if($flg=='Y') { //결과가 "Y" 경우 처리 } else if($flg=='N') { //결과가 "N" 경우 처리 } function curlSend($url, $json_data) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); cu..