[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[orca-tech:01867] Re: PHPでの新APIの利用法を教えてください
- To: orca-tech@xxxxxxxxxxxxxx
- Subject: [orca-tech:01867] Re: PHPでの新APIの利用法を教えてください
- From: koji yuen <koji.yuen@xxxxxxxxx>
- Date: Sat, 28 Apr 2012 20:12:43 +0900 (JST)
- Priority: normal
KOBAYASHIさん、吉冨@佐賀さん
いろいろアドバイスありがとうございます。
curl関数を使って一旦ファイルをダウンロードして、その後Simplexml関数に読み込ん
でも早く動きます。
やはりいきなりxml処理関数にurlを指定してストリームで流し込むのは遅いのでしょう
か?
プログラムは下記のとおりです
<?php
$tmpfile="tmp.xml";
$ch = curl_init("http://user:password@localhost/api01r/patientget?id=1234");
$fp = fopen($tmpfile, "w");
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);
$xml = simplexml_load_file($tmpfile);
foreach($xml->record->record->record->string as $data)
{
echo $data->attributes() . ": " . $data . "<br />";
}
foreach($xml->record->record->record->record->string as $data)
{
echo $data->attributes() . ": " . $data . "<br />";
}
foreach($xml->record->record->record->array->record->string as $data)
{
echo $data->attributes() . ": " . $data . "<br />";
}
?>