SIGN IN SIGN UP

Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below.

0 0 1 Java
2018-10-11 15:00:23 -07:00
<?php
2018-12-28 10:35:52 -08:00
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2018-10-11 15:00:23 -07:00
// SPDX-License-Identifier: Apache-2.0
2019-02-05 21:49:37 -08:00
// snippet-start:[sqs.php.change_message_visibility.complete]
// snippet-start:[sqs.php.change_message_visibility.import]
2018-10-11 15:00:23 -07:00
require 'vendor/autoload.php';
2019-02-05 21:49:37 -08:00
use Aws\Sqs\SqsClient;
2018-10-11 15:00:23 -07:00
use Aws\Exception\AwsException;
2019-02-05 21:49:37 -08:00
// snippet-end:[sqs.php.change_message_visibility.import]
2018-10-11 15:00:23 -07:00
/**
* Changes the visibility timeout of a specified message in a queue to a new value
*
* This code expects that you have AWS credentials set up per:
* https://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/guide_credentials.html
*/
2019-02-15 19:09:38 -08:00
// snippet-start:[sqs.php.change_message_visibility.main]
2018-10-11 15:00:23 -07:00
$queueUrl = "QUEUE_URL";
2018-10-11 15:00:23 -07:00
$client = new SqsClient([
'profile' => 'default',
'region' => 'us-west-2',
'version' => '2012-11-05'
]);
2018-10-11 15:00:23 -07:00
try {
$result = $client->receiveMessage(array(
'AttributeNames' => ['SentTimestamp'],
'MaxNumberOfMessages' => 1,
'MessageAttributeNames' => ['All'],
'QueueUrl' => $queueUrl, // REQUIRED
));
if ($result->get('Messages') != null) {
$result = $client->changeMessageVisibility([
'QueueUrl' => $queueUrl, // REQUIRED
'ReceiptHandle' => $result->get('Messages')[0]['ReceiptHandle'], // REQUIRED
'VisibilityTimeout' => 3600, // REQUIRED
]);
var_dump($result);
} else {
echo "No messages in queue \n";
}
} catch (AwsException $e) {
// output error message if fails
error_log($e->getMessage());
}
2019-02-05 21:49:37 -08:00
// snippet-end:[sqs.php.change_message_visibility.main]
// snippet-end:[sqs.php.change_message_visibility.complete]