我尝试输入 echo $steamrep_id 但没有运气,有人可以帮忙吗?代码:
<?php
class Steam_Rep_Rep {
// cURL Variable
private $ch = null;
public function __construct() {
// Setup cURL
$this->ch = curl_init();
curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($this->ch, CURLOPT_TIMEOUT, 4);
}
public function getUserInfo($steamrep_id) {
// cURL
curl_setopt($this->ch, CURLOPT_URL, "http://steamrep.com/api/beta/reputation/{$steamrep_id}?json=1");
$result = curl_exec($this->ch);
$xml = simplexml_load_string($result);
if(!empty($xml)) {
return array(
'rep' => $xml->steamREP,
);
} else {
return array(
'rep' => "No reputation found",
);
}
}
}
?>
基本上,它从 XML 文件中获取数据并将其存储在变量中。
另请注意,我是编码的半新手,我只是将其他代码的一部分并将其粘在一起以使其工作,我什至不确定它是否可以正常工作。编辑:不,我不会执行变量,我只会编写一个从变量中获取数据的代码,仅此而已。