-
Notifications
You must be signed in to change notification settings - Fork 0
/
fileTest.php
26 lines (23 loc) · 934 Bytes
/
fileTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
include "TopSdk.php";
date_default_timezone_set('Asia/Shanghai');
$c = new TopClient;
$c->appkey = '12497914';
$c->secretKey = '4b0f28396e072d67fae169684613bcd1';
// $req = new TradeVoucherUploadRequest;
// $req->setFileName("example");
// $req->setFileData("@/Users/xt/Downloads/1.jpg");
// $req->setSellerNick("奥利奥官方旗舰店");
// $req->setBuyerNick("101NufynDYcbjf2cFQDd62j8M/mjtyz6RoxQ2OL1c0e/Bc=");
// var_dump($c->execute($req));
$req2 = new TradeVoucherUploadRequest;
$req2->setFileName("example");
$myPic = array(
'type' => 'application/octet-stream',
'content' => file_get_contents('/Users/xt/Downloads/1.jpg')
);
$req2->setFileData($myPic);
$req2->setSellerNick("奥利奥官方旗舰店");
$req2->setBuyerNick("101NufynDYcbjf2cFQDd62j8M/mjtyz6RoxQ2OL1c0e/Bc=");
var_dump($c->execute($req2));
?>