PHP code example of lokielse / aliyun-oss

1. Go to this page and download the library: Download lokielse/aliyun-oss library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

lokielse / aliyun-oss example snippets

 php

$accessKeyId = "<your_access_key_id>"; ;
$accessKeySecret = "<your_access_key_secret>";
$endpoint = "http://oss-cn-hangzhou.aliyuncs.com";

$client = new OSSClient($accessKeyId, $accessKeySecret, $endpoint);

$bucket = "<your_bucket_name>";
$object = "doc/dest_demo_01.txt";
$content = "Hello, OSS!";

$client->putObject($bucket, $object, $content);