错误是:
解析错误:语法错误,第 9 行 /Applications/MAMP/htdocs/wp-content/plugins/plugin-name/includes/display-functions.php 中的意外“使用”(T_USE)
require_once "twitteroauth/autoload.php";
use Abraham\TwitterOAuth\TwitterOAuth; //<--this is line 9 where the error occurs
$consumerkey = '***************';
$consumersecret = '*********************************************';
$accesstoken = '*********************************************';
$accesstokensecret = '******************************';
$connection = new TwitterOAuth($consumerkey, $consumersecret ,$accesstoken, $accesstokensecret);
$statues = $connection->get("statuses/home_timeline", array("count" => 25, "exclude_replies" => true));
任何帮助将不胜感激。