我是 OOP 的新手,所以我可能会遗漏一些东西。我看了一会儿代码,不知道为什么它没有返回任何结果。该类如下(我的 API 密钥是正确的 - 我只是更改了它,因此人们无法访问我的帐户):
<?php
class Inputs {
private $URL;
private $Key;
private $Action;
public function __construct() {
$this->URL = 'https://inputs.io/api?key=' . $this->Key;
$this->Key = '123';
}
public function Methods($Action) {
if($this->Action == 'getbalance') {
return file_get_contents($this->URL . '&action=getbalance');
}
}
}
$Inputs = new Inputs;
print_r($Inputs->Methods('getbalance'));
API 的文档在这里:https ://inputs.io/api
如果不想访问网址,这里有一张图片:http: //puu.sh/4C5uW.png
谢谢。