そこで、codeigniter で Aweber API に接続しようとしています。アカウントに関連するすべてのデータを取得する関数がありますが、API を使用してすべての関数の先頭にこれらの 3 行を配置する必要があります。
list ($consumerKey, $consumerSecret, $accessKey, $accessSecret, $account_id) = $this->get_aweber_info();
$aweber = new AWeberAPI($consumerKey, $consumerSecret);
$account = $aweber->getAccount($accessKey, $accessSecret);
それを短くすることは可能ですか?私はちょうど言いたいです
get_aweber_connection();
私はいくつかの異なることを試しましたが、どれもうまくいきませんか?