function executeBatchDemo in TMGMT Translator Smartling 8.4
Same name and namespace in other branches
- 8.3 vendor/smartling/api-sdk-php/examples/batch-example.php \executeBatchDemo()
Parameters
\Smartling\AuthApi\AuthApiInterface $authProvider:
string $projectId:
int $batchUid:
Return value
bool
1 call to executeBatchDemo()
- batch-example.php in vendor/
smartling/ api-sdk-php/ examples/ batch-example.php
File
- vendor/
smartling/ api-sdk-php/ examples/ batch-example.php, line 125
Code
function executeBatchDemo($authProvider, $projectId, $batchUid) {
echo "--- Execute Batch ---\n";
$response = [];
$batchApi = BatchApi::create($authProvider, $projectId);
$st = microtime(true);
try {
$response = $batchApi
->executeBatch($batchUid);
} catch (\Smartling\Exceptions\SmartlingApiException $e) {
var_dump($e
->getErrors());
}
$et = microtime(TRUE);
$time = $et - $st;
echo vsprintf('Request took %s seconds.%s', [
round($time, 3),
"\n\r",
]);
if (!empty($response)) {
var_dump($response);
}
return $response;
}