コード例 #1
0
$wsdl[AcccaWsdlClass::WSDL_URL] = ACCCA_WSDL_URL;
$wsdl[AcccaWsdlClass::WSDL_CACHE_WSDL] = WSDL_CACHE_NONE;
$wsdl[AcccaWsdlClass::WSDL_TRACE] = true;
if (ACCCA_USER_LOGIN !== '') {
    $wsdl[AcccaWsdlClass::WSDL_LOGIN] = ACCCA_USER_LOGIN;
}
if (ACCCA_USER_PASSWORD !== '') {
    $wsdl[AcccaWsdlClass::WSDL_PASSWD] = ACCCA_USER_PASSWORD;
}
// etc....
/**
 * Examples
 */
/*****************************
 * Example for AcccaServiceGet
 */
$acccaServiceGet = new AcccaServiceGet($wsdl);
// sample call for AcccaServiceGet::getAnnotation()
if ($acccaServiceGet->getAnnotation(new AcccaStructGetAnnotation("Prematurity, Respiratory distress syndrome, Hyaline membrane disease, Pneumothorax, Sepsis"))) {
    $test = $acccaServiceGet->getResult();
    print_r($test);
    $a1 = $test->return;
    $a2 = $a1->return;
    $a3 = $a2->simpleAnnotationList;
    //	print_r ($a3);
    foreach ($a3 as $list) {
        echo $list->conceptText . " is a " . $list->conceptType . "</br>";
    }
} else {
    print_r($acccaServiceGet->getLastError());
}
コード例 #2
0
$wsdl[AcccaWsdlClass::WSDL_URL] = ACCCA_WSDL_URL;
$wsdl[AcccaWsdlClass::WSDL_CACHE_WSDL] = WSDL_CACHE_NONE;
$wsdl[AcccaWsdlClass::WSDL_TRACE] = true;
if (ACCCA_USER_LOGIN !== '') {
    $wsdl[AcccaWsdlClass::WSDL_LOGIN] = ACCCA_USER_LOGIN;
}
if (ACCCA_USER_PASSWORD !== '') {
    $wsdl[AcccaWsdlClass::WSDL_PASSWD] = ACCCA_USER_PASSWORD;
}
// etc....
$counter = 1;
for ($i = 0; $i < count($titles); $i++) {
    if ($language[$i] == "English") {
        echo $counter++ . ". " . $keywords[$i] . "<br>";
        //		continue;
        $acccaServiceGet = new AcccaServiceGet($wsdl);
        // sample call for AcccaServiceGet::getAnnotation()
        if ($acccaServiceGet->getAnnotation(new AcccaStructGetAnnotation($keywords[$i]))) {
            $test = $acccaServiceGet->getResult();
            //print_r($test);
            $a1 = $test->return;
            $a2 = $a1->return;
            $a3 = $a2->simpleAnnotationList;
            //	print_r ($a3);
            foreach ($a3 as $list) {
                echo $list->conceptText . " is a " . $list->conceptType . "</br>";
            }
            echo "<br>-----------------------------------------------------------<br><br>";
        } else {
            print_r($acccaServiceGet->getLastError());
        }