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 ファイルからデータを取得し、変数に格納します。
また、私はコーディングの初心者であることに注意してください。他のコードの一部を取り、それをくっつけてこの作業を行いましたが、それが機能するかどうかさえわかりません。編集:いいえ、変数を実行しません。変数からデータを取得するコードを作成するだけです。