我一直在試圖讓id字段拉,並不知道我要出錯的地方。其餘的數據正確拉動,但我試圖添加一些新的一些現有的代碼,我試過的一切都沒有奏效。以下是我的XML和我一直在努力的PHP代碼。從一個xml上傳中拉出一個特定的字段
我以前沒有用過xml和php的組合,所以我真的可以在正確的方向上使用push。
<?xml version="1.0" encoding="UTF-8"?>
<enterprise>
<person>
<sourcedid>
<source>Spirit Awards</source>
<id>SP8675309</id>
</sourcedid>
<userid>...</userid>
<name>
<fn>...</fn>
</name>
<email>...</email>
</person>
PHP代碼:
function get_userid(){
return $this->uid;
}
function __construct($xmlData){
$this->uid = (string)$xmlData->id;
}
另外,歡迎使用Stack Overflow。 – rdlowrey 2012-02-28 03:00:41