nusoap で ref によってパラメーターを設定するにはどうすればよいですか。次のコードでは、ref によって 2 つのパラメーター (status と recId) を設定する必要があります。動作しないことに注意してください&
:
$params = array(
'username' => GATEWAY_USERNAME,
'password' => GATEWAY_PASSWORD,
'from' => GATEWAY_NUMBER,
'to' => array($to),
'text' => $message,
'flash' => $flash,
'udh' => '',
'status' => &$status,
'recId' => &$recId
);
$sendParams=array($params);
$res=$this->client->call('Send',$sendParams);