function matchContextDemo in TMGMT Translator Smartling 8.3
Same name and namespace in other branches
- 8.4 vendor/smartling/api-sdk-php/examples/context-example.php \matchContextDemo()
- 8.2 api-sdk-php/examples/context-example.php \matchContextDemo()
- 8.2 vendor/smartling/api-sdk-php/examples/context-example.php \matchContextDemo()
Parameters
\Smartling\AuthApi\AuthApiInterface $authProvider:
string $projectId:
string $contextUid:
string $contentFileUri: Uri of a file which contains source strings
Return value
array
1 call to matchContextDemo()
- context-example.php in vendor/
smartling/ api-sdk-php/ examples/ context-example.php
File
- vendor/
smartling/ api-sdk-php/ examples/ context-example.php, line 92
Code
function matchContextDemo($authProvider, $projectId, $contextUid, $contentFileUri) {
$response = false;
$context = \Smartling\Context\ContextApi::create($authProvider, $projectId);
$params = new MatchContextParameters();
$params
->setContentFileUri($contentFileUri);
$st = microtime(true);
try {
$response = $context
->matchContext($contextUid, $params);
} 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;
}