Cloudstack REST API を呼び出そうとするコードがあります。
function file_get_header($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 1);
$datas = curl_exec($ch);
curl_close($ch);
return $datas;
}
$url = "http://10.151.32.51:8080/client/api?" . $command . "&" . $signature . "&" . $response;
echo $test = file_get_header($url);
出力は次のようになります。
HTTP/1.1 200 OK サーバー: Apache-Coyote/1.1 Set-Cookie: JSESSIONID=74A5104C625549EB4F1E8690C9FC8FC1; Path=/client Content-Type: text/javascript;charset=UTF-8 Content-Length: 323 Date: Sun, 01 Jun 2014 20:08:36 GMT
私がやろうとしているのは、JSESSIONID=74A5104C625549EB4F1E8690C9FC8FC1 のみを出力して変数に割り当てる方法ですか? ありがとう、