Exemplo n.º 1
0
function dsl_getPic($uid, $logID, $faith_uid, $faith_app_id)
{
    global $dsl_soap_client;
    if (!dsl_isPositiveInt($uid)) {
        return -1;
    }
    return $dsl_soap_client->__soapCall("getPic", array($uid, $logID, $faith_uid, $faith_app_id));
}
Exemplo n.º 2
0
function dsl_getPic($uid)
{
    global $dsl_soap_client;
    if (!dsl_isPositiveInt($uid)) {
        return -1;
    }
    return $dsl_soap_client->__soapCall("getPic", array($uid, $_POST['faith_uid'], $_POST['faith_client_ip'], $_POST['faith_app_id']));
}