我正在调试的 PHP 脚本中的一个关键函数从外部站点上的 XML 文件中获取两个属性。这些属性在名为 Channel 的标记中标记为“代码”和“位置代码”。问题是有时 locationCode 被发布为空字符串 ('') 或站点根本没有为我无法使用的频道定义,所以我需要遍历频道,直到找到非空的 locationCode 字符串。为此,我创建了一个 while 循环,但我当前的实现没有成功地循环遍历位置代码。有没有更好的方法来实现这一点?
当前代码:
public function setChannelAndLocation(){
$channelUrl="http://service.iris.edu/fdsnws/station/1/query?net=".$this->nearestNetworkCode.
"&sta=".$this->nearestStationCode."&starttime=2013-06-07T01:00:00&endtime=".$this->impulseDate.
"&level=channel&format=xml&nodata=404";
$channelXml= file_get_contents($channelUrl);
$channel_table = new SimpleXMLElement($channelXml);
$this->channelUrlTest=$channelUrl;
//FIXME: Check for empty locationCode string
$this->channelCode = $channel_table->Network->Station->Channel[0]['code'];
$this->locationCode = $channel_table->Network->Station->Channel[0]['locationCode'];
$i = 1;
while($this->locationCode=''){
$this->channelCode = $channel_table->Network->Station->Channel[$i]['code'];
$this->locationCode = $channel_table->Network->Station->Channel[$i]['locationCode'];
$i++;
}
}