我有以下内容;
$FilePath = "c:\user\test\koala.jpg";
$put = $dropbox->putFile($FilePath);
或者
$put = $dropbox->putFile("c:\user\test\koala.jpg");
这很好用,并将文件上传到保管箱。
c:\user\test\koala.jpg
但是,由于安全限制,显然我无法通过表单输入框获得完整路径。
有没有办法解决这个问题。我可以$FilePath
通过某种形式的输入,而无需将其作为临时文件提交到我的服务器。
我在下面放了完整的代码。
<?php
// @link https://github.com/BenTheDesigner/Dropbox/blob/master/Dropbox/API.php#L122-139
// Require the bootstrap
require_once('bootstrap.php');
// Extend your sript execution time where required
set_time_limit(0);
$put = $dropbox->putFile($FilePath);
// Dump the output
// var_dump($chunked);