1

タイプ GUID でいくつかのパラメーターを要求する SOAP アプリケーションを使用しています。それが何を意味するのか正確にはわかりません。

PHPでGUIDを作成するためにこれを見つけました:

function getGUID(){
    if (function_exists('com_create_guid')){
        return com_create_guid();
    } else {
        mt_srand((double)microtime()*10000);//optional for php 4.2.0 and up.
        $charid = strtoupper(md5(uniqid(rand(), true)));
        $hyphen = chr(45);// "-"
        $uuid = chr(123)// "{"
            .substr($charid, 0, 8).$hyphen
            .substr($charid, 8, 4).$hyphen
            .substr($charid,12, 4).$hyphen
            .substr($charid,16, 4).$hyphen
            .substr($charid,20,12)
            .chr(125);// "}"
        return $uuid;
    }
}

しかし、パラメーターを渡そうとすると、これがどのように機能するのかわかりません。これを使用する必要がある方法の例を次に示します。

$option=array('trace'=>1);
$url = "http://example.com/admin.asmx?WSDL";
$client = new SoapClient($url, $option);
$params = array(
    'consumerid'   => '1234',
    'userName'     => '1234',
    'password'     => '1234',
    'adminDomain'  => 'admin.example.com',
    'SubscriberID' => '1234',
    'orderID'      => '22147'); /* <- This value needs to be of the type GUID */

$result = $client->getOrderDetail($params);

新しい GUID を作成できますが、それに値を関連付ける方法がわかりません。誰かが説明を提供できますか?

4

1 に答える 1

0

もしかして:

$option=array('trace'=>1);
$url = "http://example.com/admin.asmx?WSDL";
$client = new SoapClient($url, $option);

# get guid and store in variable
$guid = getGUID();

$params = array(
    'consumerid'   => '1234',
    'userName'     => '1234',
    'password'     => '1234',
    'adminDomain'  => 'admin.example.com',
    'SubscriberID' => '1234',
    'orderID'      => $guid); # now use that guid here

$result = $client->getOrderDetail($params);
于 2012-06-29T19:01:08.940 に答える