'{username}', 'apiKey' => '{apiKey}', )); // 2. Obtain an Object Store service object from the client. $objectStoreService = $client->objectStoreService(null, '{region}'); // 3. Get container. $container = $objectStoreService->getContainer('{sourceContainerName}'); // 4. Get object. $object = $container->getObject('{objectName}'); // 5. Create another container for object's copy. $objectStoreService->createContainer('{destinationContainerName}'); // 6. Symlink to object from another container object. {objectName} must either not exist or be an empty file. $object->createSymlinkFrom('{destinationContainerName}/{objectName}'); // 7. Symlink from object to another container object. $object must be an empty file. $object->createSymlinkTo('{destinationContainerName}/{objectName}');